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