'use client'; import * as React from 'react'; import { cn } from '@/lib/utils/cn'; export interface SelectProps extends React.SelectHTMLAttributes { label?: string; } const Select = React.forwardRef( ({ className, label, children, ...props }, ref) => { return (
{label && ( )}
); } ); Select.displayName = 'Select'; export { Select };