So when I’m using an Icon in Ant Design it is always 14 * 14 px. Is there a way to set the size maually?
Things like
JavaScript
x
2
1
<Icon width={"20px"} type="setting" />
2
or
JavaScript
1
2
1
<Icon style={{width: '20em'}} type="setting" />
2
do not work
Advertisement
Answer
Can change the size of the icon using fontSize
style property.
eg: use of style={{ fontSize: '150%'}}
JavaScript
1
2
1
<PlayCircleFilled style={{ fontSize: '150%'}} />
2