jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Icon/props.d.ts
2024-11-15 11:51:28 +08:00

21 lines
453 B
TypeScript

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>;