import clsx from "clsx"; import React from "react"; import { HamburgerIcon } from "./icons/hamburger"; import { CloseIcon } from "./icons/close"; type Props = { className?: string; active?: boolean; onClick?: () => void; }; export const CommonHamburgerIcon = ({ active, className, onClick }: Props) => { return ( ); };