import type { ExtractPropTypes } from 'vue'; export declare const iconProps: { /** * @description 图标大小 */ size: { type: NumberConstructor; }; /** * @description 图标颜色 */ color: { type: StringConstructor; }; /** * @description 图标轮廓颜色 */ stroke: { type: StringConstructor; }; /** * @description 图标轮廓宽度 */ strokeWidth: { type: (NumberConstructor | StringConstructor)[]; }; /** * @description 是否旋转 */ spin: { type: BooleanConstructor; }; /** * @description 旋转速度,单位 s (秒) */ spinRate: { type: NumberConstructor; default: number; }; /** * @description 旋转角度,单位 deg */ rotate: { type: NumberConstructor; }; }; export type IconProps = ExtractPropTypes;