This commit is contained in:
Dmitry Borisenko
2022-08-31 22:25:22 +02:00
parent 8f7bcae0e3
commit c14550ce6c
6 changed files with 128 additions and 87 deletions

7
src/svg/Book.svelte Normal file
View File

@@ -0,0 +1,7 @@
<script>
export let color;
export let x = 0;
export let y = 0;
</script>
<svg class="h-8 w-8 {color}" width="8" height="8" viewBox="{x} {y} 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" /> <rect x="4" y="4" width="16" height="16" rx="2" /> <line x1="4" y1="12" x2="20" y2="12" /> <line x1="12" y1="4" x2="12" y2="20" /></svg>