import clsx from 'clsx'; import { SelectHTMLAttributes } from 'react'; export interface Option { value: T; label: string; } interface Props { options: Option[]; } export function Select({ options, className, ...props }: Props & SelectHTMLAttributes) { return ( ); }