rano/web/lib/ui/Btn.svelte

16 lines
351 B
Svelte
Raw Normal View History

2024-11-01 19:55:30 +05:30
<script lang="ts">
2024-11-18 20:53:13 +05:30
import { type Snippet } from 'svelte';
2024-11-01 19:55:30 +05:30
2024-11-18 20:53:13 +05:30
interface Props {
children: Snippet;
}
const { children }: Props = $props();
2024-11-01 19:55:30 +05:30
</script>
2024-11-18 20:53:13 +05:30
// 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 19:55:30 +05:30
<button>
{@render children()}
</button>