import { FunctionComponent } from 'react'; interface FormLabelProps { htmlFor: string; children: string; } /** * @example * Name; */ const FormLabel: FunctionComponent = ({ htmlFor, children }) => ( {children} ); export default FormLabel;