Skip to content

Commit c4aa757

Browse files
committed
chore(web): Apply SVG transform to simplify IFPI icon
With the previous commit, it is no longer necessary to override the stroke properties with their default values.
1 parent 925315f commit c4aa757

File tree

2 files changed

+23
-33
lines changed

2 files changed

+23
-33
lines changed

server/icons/BrandIfpi.tsx

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default function IconBrandIfpi({
22
size = 24,
33
color = 'currentColor',
4-
stroke = 2.,
4+
stroke = 2,
55
...props
66
}) {
77
return (
@@ -16,13 +16,11 @@ export default function IconBrandIfpi({
1616
fill='none'
1717
{...props}
1818
>
19-
<g transform='translate(-343.3 -311.3)' stroke-linecap='butt' stroke-linejoin='miter'>
20-
<path d='m345.8 315.8v14.25' />
21-
<path d='m364.7 315.8v14.25' />
22-
<path d='m354.5 316.9h-4.875v13.12' />
23-
<path d='m349.3 323h4.5' />
24-
<path d='m356.8 330v-13.12h3l1.125 1.125v4.5l-1.125 1.125h-3' />
25-
</g>
19+
<path d='m2.5 4.5v14.2' />
20+
<path d='m21.4 4.5v14.2' />
21+
<path d='m11.2 5.6h-4.9v13.1' />
22+
<path d='m6 11.7h4.5' />
23+
<path d='m13.5 18.7v-13.1h3l1.1 1.1v4.5l-1.1 1.1h-3' />
2624
</svg>
2725
);
2826
}

server/icons/ifpi.svg

+17-25
Loading

0 commit comments

Comments
 (0)