type Props = { active: boolean; onClick: () => void; }; export default function Burger({ active, onClick }: Props) { return (
); }