UNPKG

ontime-components

Version:
14 lines (13 loc) 374 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; import { TFuncClick } from '../../libs/types'; interface IIconProps extends IProps { value: string; size?: string; onClick?: Function; } declare class Icon extends PureComponent<IIconProps> { onClick: TFuncClick; render(): JSX.Element; } export { Icon, IIconProps };