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