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

21 lines
453 B
TypeScript
Raw Normal View History

2025-08-18 09:11:51 +08:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface IconProps extends IBaseProps {
/**
* @description icon
* @default ""
*/
type?: string;
/**
*
*/
onTap?: (e: any) => void;
/**
*
*/
catchTap?: (e: any) => void;
}
export declare const IconDefaultProps: Partial<IconProps>;