import { FC, HTMLProps } from "react"; interface InputLabelProps extends HTMLProps { required?: boolean; } const InputLabel: FC = (props) => { return ( ); }; export default InputLabel;