How do I resize the icon size of a button? I'm using ExtJS 7.6.0.
I am currently developing a web application using ExtJS 7.6.0 and I've come across a situation where I need to resize an icon on a button. I've defined the button like this:
{
xtype: 'button',
iconCls: 'x-fa fa-sign-out-alt fa-3x',
flex: 1
}
The iconCls property is set with Font Awesome icon 'sign-out-alt' with a size class 'fa-3x'. However, this does not seem to affect the size of the icon as I expected.
Could anyone suggest a way to resize the icon within a button component in ExtJS? Any help or guidance to relevant resources would be greatly appreciated.
Thank you!