1234567891011121314151617181920 |
- import { IBaseProps } from '../_util/base';
- export interface IconProps extends IBaseProps {
-
- type?: string;
-
- onTap?: (e: any) => void;
-
- catchTap?: (e: any) => void;
- }
- export declare const IconDefaultProps: Partial<IconProps>;
|