import React from 'react'; import { Link } from "react-router-dom"; import styled from 'styled-components'; import SVGIcon from '../UI/Icon/SVGIcon'; // import './styles/Header.css'; const HeaderElement = styled.header` min-width: 950px; display: flex; justify-content: space-between; align-items: center; margin: 18px 8%; `; const LogoSection = styled.section` display: flex; align-items: center; `; const VerticalLine = styled.div` width: 1px; height: 37px; margin: 0px 17px; background-color: #a9a9a9; `; const LocationButton = styled.button` width: 150px; height: 28px; margin-left: 20px; border-radius: 40px; background-color: #CCC; font-size: 15px; & ${SVGIcon} { margin-left: 0; } `; const PairentLogo = styled.h1` user-select: none; `; const NavButton = styled.div` & a:hover { color: #0050A1; transition: 0.3s ease; } `; const Navbar = styled.nav` display: flex; align-items: center; & ${NavButton} { margin-right: 55px } `; const Header = function () { return ( Pairent Владивосток Избранное Сравнения Чаты ); } export default Header;