props.d.ts 453 B

1234567891011121314151617181920
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 图标,内置丰富的图标可以选择。
  4. */
  5. export interface IconProps extends IBaseProps {
  6. /**
  7. * @description icon 图标的类型
  8. * @default ""
  9. */
  10. type?: string;
  11. /**
  12. * 点击图标
  13. */
  14. onTap?: (e: any) => void;
  15. /**
  16. * 点击图标
  17. */
  18. catchTap?: (e: any) => void;
  19. }
  20. export declare const IconDefaultProps: Partial<IconProps>;