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