💄 Update Icon component to prevent flex shrinkage

This commit is contained in:
Baptiste Arnaud 2025-08-26 10:29:03 +02:00
parent 4ea6903dd8
commit 755a1daef0
No known key found for this signature in database

View File

@ -15,7 +15,7 @@ export const Icon = forwardRef<SVGSVGElement, IconProps>(
icon={icon}
size={16}
strokeWidth={1.5}
className={cn("inline-flex", className)}
className={cn("inline-flex flex-shrink-0", className)}
{...props}
/>
);