ontime-components
Version:
List of react components
13 lines (12 loc) • 347 B
TypeScript
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 };