UNPKG

ontime-components

Version:
13 lines (12 loc) 347 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface ILabelProps extends IProps { value?: string; required?: boolean; children?: any; } declare class Label extends PureComponent<ILabelProps> { static defaultProps: ILabelProps; render(): JSX.Element; } export { Label, ILabelProps };