import { CaretDownIcon } from '@radix-ui/react-icons' import type { SelectHTMLAttributes } from 'react' import styles from './Select.module.css' type Props = SelectHTMLAttributes & { options: { value: string; label: string }[] } export function Select({ options, ...rest }: Props) { return ( {options.length > 1 ? : null} ) }