fix(icon-style): Ensure consistent icon dimensions (#3727)
This commit is contained in:
parent
0177b625ba
commit
6ca13c0a4c
@ -276,7 +276,13 @@ const SidePanel = ({ side, className, activeTabIndex: activeTabIndexProp, tabs,
|
|||||||
data-cy={`${tab.name}-btn`}
|
data-cy={`${tab.name}-btn`}
|
||||||
>
|
>
|
||||||
<div className={getTabIconClassNames(tabs.length, tabIndex === activeTabIndex)}>
|
<div className={getTabIconClassNames(tabs.length, tabIndex === activeTabIndex)}>
|
||||||
<Icon name={tab.iconName}></Icon>
|
<Icon
|
||||||
|
name={tab.iconName}
|
||||||
|
style={{
|
||||||
|
width: '22px',
|
||||||
|
height: '22px',
|
||||||
|
}}
|
||||||
|
></Icon>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user