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