jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Icon/props.d.ts

25 lines
492 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
/* eslint-disable @typescript-eslint/no-explicit-any */
import { IBaseProps } from '../_base';
/**
* @description
*/
export interface IIconProps<T = any> extends IBaseProps {
/**
* @description icon
* @default ""
*/
type: string;
/**
*
*/
onTap?: (e: any) => void;
/**
*
*/
catchTap?: (e: any) => void;
}
export declare const IconDefaultProps: Partial<IIconProps>;