import { CSSProperties } from 'react'; /** * 图标组件的属性类型 */ export type IconPropsType = { /** * iconify的图标name */ name: string; /** * 图标大小,如果是数值默认单位为px */ size?: string | number; /** * 样式 */ style?: CSSProperties; /** * 样式类 */ className?: string; };