icon.d.ts 662 B

1234567891011121314151617181920212223242526
  1. import { Loading } from 'element-plus/es/icons-vue';
  2. import type { Component } from 'vue';
  3. export declare const iconPropType: import("vue").PropType<string | Component>;
  4. export declare const CloseComponents: {
  5. Close: any;
  6. };
  7. export declare const TypeComponents: {
  8. Close: any;
  9. SuccessFilled: any;
  10. InfoFilled: any;
  11. WarningFilled: any;
  12. CircleCloseFilled: any;
  13. };
  14. export declare const TypeComponentsMap: {
  15. primary: any;
  16. success: any;
  17. warning: any;
  18. error: any;
  19. info: any;
  20. };
  21. export declare const ValidateComponentsMap: {
  22. validating: any;
  23. success: any;
  24. error: any;
  25. };
  26. export type IconComponent = typeof Loading;