Skip to content

Commit

Permalink
feat(header): removed search input from header
Browse files Browse the repository at this point in the history
  • Loading branch information
DBKai committed Jan 10, 2024
1 parent 29fdedc commit 7fea081
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import PropTypes from 'prop-types';
import './Header.scss';
import { useNavigate } from 'react-router-dom';
import Logo from '../Logo/Logo';
import InputSearch from '../InputSearch/InputSearch';
// import InputSearch from '../InputSearch/InputSearch';
import NavBar from '../NavBar/NavBar';
import { dataNavArray } from '../../utils/data';
import { Pushbutton } from '../Pushbutton/Pushbutton';
import iconSearch from '../../images/header/search.svg';
// import iconSearch from '../../images/header/search.svg';

function Header({ isLoggedIn, handleConfirmLogout }) {
const navigate = useNavigate();
Expand All @@ -18,12 +18,12 @@ function Header({ isLoggedIn, handleConfirmLogout }) {
label="ЛучшеВместе"
sublabel="Городские инициативы — шаг к переменам"
/>
<InputSearch
{/* <InputSearch
placeholder="Поиск"
border="1px solid #9BC1F9"
icon={iconSearch}
// width="450px"
/>
/> */}
<NavBar
isLoggedIn={isLoggedIn}
handleConfirmLogout={handleConfirmLogout}
Expand Down

0 comments on commit 7fea081

Please sign in to comment.