react-iconfont-cli icon indicating copy to clipboard operation
react-iconfont-cli copied to clipboard

应该把DOMAttributes替换为SVGAttributes

Open guofei0723 opened this issue 4 years ago • 1 comments

在图标组件与index.tsx中,接口Props都是继承自DOMAttributes,如下

interface Props extends DOMAttributes<SVGElement>

这样实际上没有继承到svg元素应有的属性,如width、height等,需要改成

interface Props extends SVGAttributes<SVGElement>

guofei0723 avatar Jan 27 '21 06:01 guofei0723

感谢指正,已经处理

fwh1990 avatar Jan 27 '21 10:01 fwh1990