7 lines
219 B
Svelte
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} />
|