import React from 'react'; export type IconDataType = Record & { viewBox?: string; paths?: React.SVGAttributes[]; }; export interface SvgIconProps extends React.SVGAttributes { /** 大小 */ size?: number | string; /** 整体颜色 */ color?: string; /** 图标配置 */ icon: IconDataType; /** 覆盖自定义图标的 path 属性 */ customPathProps?: React.SVGAttributes[]; /** 是否旋转 */ spinning?: boolean; } declare const SvgIcon: React.ForwardRefExoticComponent>; export default SvgIcon;