Skip to content

Commit b06f757

Browse files
committed
fix(icons): trim Folder SVG viewBox to remove right-side whitespace
The folder path only extends to x≈14.33 in a 15-unit viewBox, leaving ~0.5 units of empty space on the right. At 12px rendered size this produces ~0.4px extra gap (visible as ~1px on retina displays) compared to solid icons like the workflow color square. Trimming the viewBox to 14.5 units makes the folder fill its chip slot evenly.
1 parent eaefa56 commit b06f757

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/components/emcn/icons/folder.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import type { SVGProps } from 'react'
77
export function Folder(props: SVGProps<SVGSVGElement>) {
88
return (
99
<svg
10-
width='15'
10+
width='14.5'
1111
height='13'
12-
viewBox='0 0 15 13'
12+
viewBox='0 0 14.5 13'
1313
fill='none'
1414
xmlns='http://www.w3.org/2000/svg'
1515
aria-hidden='true'

0 commit comments

Comments
 (0)