import type {FieldLabelProps} from '@givewp/forms/propTypes'; /** * The label for a field with the required indicator if applicable. * * @since 3.0.0 */ export default function FieldLabel({label, required}: FieldLabelProps) { return ( {label} {required && ( <> {' '} * )} ); }