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