feat(svelte): add background

This commit is contained in:
moklick
2023-02-19 18:07:50 +01:00
parent 90ac61a6bd
commit 51fd1cc01a
10 changed files with 135 additions and 42 deletions
@@ -0,0 +1,6 @@
<script lang="ts">
export let radius = 5;
export let color = "#000";
</script>
<circle cx={radius} cy={radius} r={radius} fill={color} />