/// import { SvgIconProps } from '@mui/material/SvgIcon'; interface props extends SvgIconProps { width?: string; height?: string; } export default function HamburgerIcon({ width, height, className, ...props }: props): JSX.Element; export {};