karl/view/src/icons/Plus.svelte

22 lines
375 B
Svelte

<script>
export let w = 80;
export let color = "black";
export let weight = 1;
</script>
<svg
width={w}
height={w}
viewBox="0 0 82 82"
fill="none"
style="height: 100%;"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M41 0V81.5M81.75 40.75L0.25 40.75"
stroke={color}
vector-effect="non-scaling-stroke"
stroke-width="{weight}px"
/>
</svg>