import React from 'react'; import colors from '../../theme/colors'; import InfoTip from '../InfoTip'; import Typography from '../Typography'; import { Label, LabelWrapper } from './styles'; type InputFieldLabelProps = { label: string; name?: string; errorState?: boolean; required?: boolean; infoTip?: string; }; const InputFieldLabel = ({ label, name, errorState, infoTip, required, }: InputFieldLabelProps) => { return ( ); }; export default InputFieldLabel;