Skip to content

Commit ef27632

Browse files
committed
Remove margin from icon in NavigationItemRenderer for consistent styling
1 parent c806140 commit ef27632

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/console/src/components/AppSidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,12 @@ function NavigationItemRenderer({ item }: { item: any }) {
296296
<SidebarMenuButton asChild isActive={isActive} tooltip={item.label}>
297297
{isExternal ? (
298298
<a href={href} target="_blank" rel="noopener noreferrer">
299-
<Icon className="mr-2 h-4 w-4" />
299+
<Icon className="h-4 w-4" />
300300
<span>{item.label}</span>
301301
</a>
302302
) : (
303303
<Link to={href}>
304-
<Icon className="mr-2 h-4 w-4" />
304+
<Icon className="h-4 w-4" />
305305
<span>{item.label}</span>
306306
</Link>
307307
)}

0 commit comments

Comments
 (0)