import { IconButton, IconButtonProps, SxProps, Theme, useTheme } from "@mui/material"; interface Props { onClick?: IconButtonProps["onClick"]; sx?: SxProps; color?: string; } export function BurgerButton({ onClick, sx, color = "white" }: Props) { const theme = useTheme(); return ( ); }