import { CalendarIcon } from "@heroicons/react/24/outline"; import { HeaderLeftContentProps } from "../../types/home"; import Button from "../button/button"; import Typography from "../typography/typography"; import HeaderLeft from "./header-left"; const Header = ({ data }: HeaderLeftContentProps) => { return (
{/* content in left section */} {/* content in right section */}
); }; export default Header;