import React from 'react'; interface Option { value: string | number; label: string; } interface SelectFieldProps extends React.SelectHTMLAttributes { label: string; id: string; options: Option[]; infoText?: string; } export const SelectField: React.FC = ({ label, id, options, infoText, className, ...props }) => { return (
{infoText && (
{infoText}
)}
); };