UNPKG

ontime-components

Version:
12 lines (11 loc) 311 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface ITextProps extends IProps { value?: string | number; strong?: boolean; children?: any; } declare class Text extends PureComponent<ITextProps> { render(): JSX.Element; } export { Text, ITextProps };