UNPKG

react-restyle-components

Version:
13 lines (12 loc) 381 B
/// <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 {};