在图标组件与index.tsx中,接口Props都是继承自DOMAttributes,如下 ```typescript interface Props extends DOMAttributes<SVGElement> ``` 这样实际上没有继承到svg元素应有的属性,如width、height等,需要改成 ```typescript interface Props extends SVGAttributes<SVGElement> ```