import { forwardRef, type SelectHTMLAttributes } from 'react' import { cn } from '@/lib/cn' import { ChevronDown } from 'lucide-react' export interface SelectProps extends SelectHTMLAttributes {} export const Select = forwardRef(({ className, children, ...props }, ref) => (
)) Select.displayName = 'Select'