rano/web/lib/ui/Btn.svelte

13 lines
197 B
Svelte
Raw Normal View History

2024-11-01 14:25:30 +00:00
<script lang="ts">
import { type Snippet } from "svelte";
interface Props {
children: Snippet
}
const { children }:Props = $props();
</script>
<button>
{@render children()}
</button>