UNPKG

@rjsf/core

Version:

A simple React component capable of building HTML forms out of a JSON schema.

14 lines 463 B
export type LabelProps = { /** The label for the field */ label?: string; /** A boolean value stating if the field is required */ required?: boolean; /** The id of the input field being labeled */ id?: string; }; /** Renders a label for a field * * @param props - The `LabelProps` for this component */ export default function Label(props: LabelProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=Label.d.ts.map