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

21 lines
453 B
TypeScript
Raw Normal View History

2024-12-01 11:56:54 +00:00
import { IBaseProps } from '../_util/base';
2024-11-10 07:01:22 +00:00
/**
* @description
*/
2024-12-01 11:56:54 +00:00
export interface IconProps extends IBaseProps {
/**
* @description icon
* @default ""
*/
type?: string;
/**
*
*/
onTap?: (e: any) => void;
/**
*
*/
catchTap?: (e: any) => void;
2024-11-10 07:01:22 +00:00
}
2024-12-01 11:56:54 +00:00
export declare const IconDefaultProps: Partial<IconProps>;