import { cn } from '@/lib/utils'; import { SelectHTMLAttributes } from 'react'; interface SelectProps extends SelectHTMLAttributes { options: { value: string; label: string; disabled?: boolean }[]; } export const Select = ({ className, options, ...restProps }: SelectProps) => { return ( ); }; export default Select;