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