import { Button, SxProps, Theme, useTheme } from "@mui/material"; interface Props { children?: React.ReactNode; isSelected?: boolean; onClick: () => void; sx?: SxProps; } export default function SelectableButton({ children, isSelected = false, onClick, sx, }: Props) { const theme = useTheme(); return ( ); }