interface SwitchButtonProps { id?: string value: ValueType label?: string icon?: React.ReactNode tooltip?: string dimensions?: string isSelected?: boolean onSelect: (value: ValueType) => void } function SwitchButton({ value, icon, label, tooltip, dimensions='w-fit h-fit', isSelected, onSelect, ...props }: SwitchButtonProps) { return ( ); } export default SwitchButton;