UNPKG

@ant-design/web3-icons

Version:
11 lines 298 B
// for fix https://github.com/ant-design/ant-design-web3/issues/1056 export function eraseDefaultProps(svgComponent) { const defaultProps = svgComponent.defaultProps; return props => { const newProps = { ...defaultProps, ...props }; return svgComponent(newProps); }; }