UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

11 lines (10 loc) 319 B
import { default as React } from 'react'; export interface ComponentLabelProps { required?: boolean; label?: React.ReactNode; tooltip?: React.ReactNode; htmlId?: string; noColFormLabelClassname?: boolean; } declare const ComponentLabel: React.FC<ComponentLabelProps>; export default ComponentLabel;