typescript import { SelectHTMLAttributes, forwardRef } from 'react'; import { clsx } from 'clsx'; interface SelectProps extends SelectHTMLAttributes { label?: string; } export const Select = forwardRef(({ className, label, children, ...props }, ref) => (
{label && }
));