update to svelte 5

This commit is contained in:
2024-10-29 16:26:07 +01:00
parent d39ccba927
commit 66f09cf5a3
9 changed files with 558 additions and 1244 deletions

View File

@ -1,9 +1,13 @@
<script lang="ts">
export let size = '64px';
export let thickness = '6px';
interface Props {
size?: string;
thickness?: string;
}
let { size = '64px', thickness = '6px' }: Props = $props();
</script>
<div class="lds-dual-ring" style="--size: {size}; --thickness: {thickness}" />
<div class="lds-dual-ring" style="--size: {size}; --thickness: {thickness}"></div>
<style>
.lds-dual-ring {