function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ami PandaAmi Panda 

How to resize the lightning toggle button in lightning component?

<lightning:buttonMenu alternativeText="Toggle menu" iconSize="x-Small" onselect="{!c.handleMenuSelect}">
Raj VakatiRaj Vakati
Use the variant, iconSize, or class attributes to customize the styling. For example, you can set class="slds-m-vertical_large" or other margin classes to add spacing around the icon

Or use your own class 
 
<lightning:buttonMenu iconName="utility:settings" 
                          iconSize="large"
                          variant="bare"
class ="slds-m-vertical_large"
                          alternativeText="Settings" 
                          onselect="{! c.handleMenuSelect }">