export default SvgIconWrap; declare class SvgIconWrap extends React.PureComponent { static propTypes: { /** 图标颜色,值为 css color 支持属性值 */ color: PropTypes.Requireable; /** 是否旋转 */ spin: PropTypes.Requireable; /** 图标的尺寸大小 */ size: PropTypes.Requireable; /** icon */ children: PropTypes.Requireable; }; static defaultProps: { size: string; }; constructor(props: any); constructor(props: any, context: any); render(): JSX.Element; } import React from "react"; import PropTypes from "prop-types";