react-restyle-components
Version:
Easy use restyle components
13 lines (12 loc) • 381 B
TypeScript
/// <reference types="react" />
import { IconBaseProps } from 'react-icons/lib';
import '../../../../tc.css';
interface IconProps {
nameIcon: string;
propsIcon?: IconBaseProps;
tooltip?: string;
isDisable?: boolean;
onClick?: () => void;
}
export declare const Icon: ({ nameIcon, propsIcon, tooltip, isDisable, onClick, }: IconProps) => JSX.Element;
export {};