website
git clone https://git.pyrossh.dev/website
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
947dfb7
— pyrossh
2026-07-04T14:46:24+05:30
fix: remove conflicting SVG attributes from DynamicIcon
src/components/DynamicIcon.astro
CHANGED
|
@@ -17,10 +17,6 @@ const svgPath = iconData?.body ?? "";
|
|
|
17
17
|
width={size}
|
|
18
18
|
height={size}
|
|
19
19
|
viewBox="0 0 24 24"
|
|
20
|
-
fill="none"
|
|
21
|
-
stroke="currentColor"
|
|
22
|
-
stroke-linecap="round"
|
|
23
|
-
stroke-linejoin="round"
|
|
24
20
|
color={color}
|
|
25
21
|
set:html={svgPath}
|
|
26
22
|
/>
|