Update src/

This commit is contained in:
freearhey 2025-04-14 21:53:33 +03:00
parent 09b07e9b24
commit 86743c74f5
132 changed files with 4418 additions and 1907 deletions

View file

@ -1,13 +1,11 @@
<script>
import SquareButton from '~/components/SquareButton.svelte'
import IconButton from '~/components/IconButton.svelte'
import * as Icon from '~/icons'
export let variant = 'default'
export let onClick
</script>
<SquareButton on:click aria-label="Close">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</SquareButton>
<IconButton {onClick} aria-label="Close" title="Close" {variant}>
<Icon.Close size={20} />
</IconButton>