Skip to content

Commit 831214b

Browse files
committed
Fix SVG attributes to use camelCase for strokeWidth and strokeLinejoin
1 parent 5982899 commit 831214b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/Logo.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ export default function Logo({ className }: { className?: string }) {
1111
<path
1212
d="M128 224L48 170.667V64L128 117.333L208 64V170.667L128 224Z"
1313
stroke="currentColor"
14-
stroke-width="12"
15-
stroke-linejoin="round"
14+
strokeWidth="12"
15+
strokeLinejoin="round"
1616
/>
1717
<path
1818
d="M117.333 160L90.6667 144V176L117.333 160Z"
1919
stroke="currentColor"
20-
stroke-width="12"
21-
stroke-linejoin="round"
20+
strokeWidth="12"
21+
strokeLinejoin="round"
2222
/>
2323
<path
2424
d="M165.333 144L138.667 160L165.333 176V144Z"
2525
stroke="currentColor"
26-
stroke-width="12"
27-
stroke-linejoin="round"
26+
strokeWidth="12"
27+
strokeLinejoin="round"
2828
/>
2929
</svg>
3030
);

0 commit comments

Comments
 (0)