import './SelectButton.css' interface SelectButtonProps { label: string width?: number } function ChevronDownIcon() { return ( ) } export function SelectButton({ label, width = 240 }: SelectButtonProps) { return ( {label} ) }