import {Button, useTheme} from "@mui/material"; interface Props { Icon: React.ElementType; isActive?: boolean; onClick: () => void; } export default function SelectableIconButton({ Icon, isActive = false, onClick }: Props) { const theme = useTheme(); return (