import React from 'react'; import { cn } from '../../lib/utils.ts'; interface SelectProps extends React.SelectHTMLAttributes { label?: string; options: { value: string; label: string }[]; } export const Select: React.FC = ({ label, options, className, ...props }) => { return (
{label && }
); };