lydstyrke/src/lib/components/ui/form/form-button.svelte

11 lines
246 B
Svelte
Raw Normal View History

2024-04-21 00:15:50 +00:00
<script lang="ts">
import * as Button from "$lib/components/ui/button/index.js";
type $$Props = Button.Props;
type $$Events = Button.Events;
</script>
<Button.Root type="submit" on:click on:keydown {...$$restProps}>
<slot />
</Button.Root>