import type { ButtonHTMLAttributes } from 'react'; import { cn } from '../../lib/classname'; type SelectionButtonProps = { text: string; isDisabled: boolean; isSelected: boolean; onClick: () => void; } & ButtonHTMLAttributes; export function SelectionButton(props: SelectionButtonProps) { const { text, isDisabled, isSelected, onClick, className, ...rest } = props; return ( ); }