import { styled } from 'styled-components';
import { Avatar, Flex, Header, Input, Menu, Text } from '../../../..';
import ODSLogo from '../../assets/opize-design-system-logo.png';
import OpizeLogo from '../../assets/opize-logo.png';
import { MagnifyingGlass } from '@phosphor-icons/react';
import { useState } from 'react';
const HeaderIconImg = styled.img`
height: 32px;
`;
const MenuProfileContainer = styled.div`
width: 230px;
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
margin-bottom: 8px;
`;
const MenuProfile = () => {
return (
Opize
hello@opize.me
);
};
export const PageHeader = () => {
const [isInputActive, setIsInputActive] = useState(false);
return (
);
};