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