UNPKG
@ant-design/web3-icons
Version:
alpha (0.1.0-alpha.1)
beta (0.0.0-beta-20260319081739)
latest (1.16.0)
2.0.0
1.16.0
1.15.0
1.14.0
1.13.0
1.12.0
1.11.4
1.11.3
1.11.2
1.11.1
1.11.0
1.10.0
1.9.0
1.8.1
1.8.0
1.7.0
1.6.0
1.5.0
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.2.0
0.1.0
0.1.0-alpha.1
0.0.0-beta-20260319081739
0.0.0-beta-20260311032720
0.0.0-beta-20260304103932
0.0.0-beta-20260302105616
0.0.0-beta-20260227071916
0.0.0-beta-20260212051246
0.0.0-beta-20260210103056
0.0.0-alpha-20260209094036
A collection of Web3 icons.
web3.ant.design
ant-design/ant-design-web3
@ant-design/web3-icons
/
dist
/
esm
/
utils.js
11 lines
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// 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); }; }