import { forwardRef, type SelectHTMLAttributes } from 'react' import { cn } from '@/lib/cn' type Props = SelectHTMLAttributes export const Select = forwardRef(({ className, children, ...props }, ref) => ( )) Select.displayName = 'Select'