chore: add prettier, eslint, fix some components

This commit is contained in:
2026-08-27 20:34:16 +05:00
parent 0acfa3aeb9
commit bc5a5d13c4
14 changed files with 1204 additions and 73 deletions
+4 -2
View File
@@ -1,13 +1,15 @@
<script lang="ts">
import type { Snippet } from "svelte";
interface Props {
accent?: boolean;
children?: import('svelte').Snippet;
children?: Snippet;
}
let { accent = false, children }: Props = $props();
</script>
<span class="mono-label" class:accent={accent}>
<span class="mono-label" class:accent>
{#if children}
{@render children()}
{/if}