UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

13 lines (11 loc) 301 B
import { default as React } from 'react'; interface FieldLabelProps { text: React.ReactNode; htmlForLabel: string; id?: string; displayClasses?: string; isRequired?: boolean; children?: React.ReactNode; } export declare const FieldLabel: React.FC<FieldLabelProps>; export {};