UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

12 lines (11 loc) 273 B
import { FC, ReactElement } from 'react'; type LabelProps = { label: string; required: boolean; inputId: string; isTextHidden?: boolean; icon?: ReactElement; iconPosition?: 'left' | 'right'; }; export declare const Label: FC<LabelProps>; export {};