rano/web/lib/ui/Btn.svelte

16 lines
351 B
Svelte
Raw Normal View History

2024-11-01 14:25:30 +00:00
<script lang="ts">
2024-11-18 15:23:13 +00:00
import { type Snippet } from 'svelte';
2024-11-01 14:25:30 +00:00
2024-11-18 15:23:13 +00:00
interface Props {
children: Snippet;
}
const { children }: Props = $props();
2024-11-01 14:25:30 +00:00
</script>
2024-11-18 15:23:13 +00:00
// Copyright 2024 Patial Tech. All rights reserved. // Use of this source code is governed by a BSD-style // license
that can be found in the LICENSE file.
2024-11-01 14:25:30 +00:00
<button>
{@render children()}
</button>