Skip to content
Advertisement

How can I set the size of icons in Ant Design?

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

or

JavaScript

do not work

Advertisement

Answer

Can change the size of the icon using fontSize style property.

eg: use of style={{ fontSize: '150%'}}

JavaScript

enter image description here

Advertisement