UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

9 lines (8 loc) 273 B
import * as React from 'react'; import { FormText } from './Types'; interface ILabelRendererProps { label: FormText; required: boolean; } export declare const LabelRenderer: React.MemoExoticComponent<(props: ILabelRendererProps) => JSX.Element>; export {};