Repository URL to install this package:
|
Version:
4.0.75 ▾
|
import React from 'react';
import { DefaultProps } from '../typings';
export interface LabelProps extends DefaultProps {
text?: string;
children?: React.ReactNode;
}
declare class Label extends React.PureComponent<LabelProps> {
static defaultProps: {};
render(): JSX.Element;
}
export { Label };
export default Label;