🎨 Add shadcn SVG component

This commit is contained in:
pheralb
2025-08-29 00:14:51 +01:00
parent 09291b90fe
commit 6ac5318436
+21
View File
@@ -0,0 +1,21 @@
<script lang="ts">
import type { IconProps } from "@/types/icon";
let props: IconProps = $props();
</script>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 256 256"
width={props.size}
height={props.size}
>
<path fill="none" d="M0 0h256v256H0z" />
<path
fill="none"
stroke="currentColor"
stroke-width="25"
stroke-linecap="round"
d="M208 128l-80 80M192 40L40 192"
/>
</svg>