peer-at-code-web/src/lib/components/ui/form/form-button.svelte
2025-01-28 21:14:10 +01:00

7 lines
219 B
Svelte

<script lang="ts">
import * as Button from "$lib/components/ui/button/index.js";
let { ref = $bindable(null), ...restProps }: Button.Props = $props();
</script>
<Button.Root bind:ref type="submit" {...restProps} />