mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 13:54:12 +02:00
8 lines
219 B
Svelte
8 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 type="submit" bind:ref {...restProps} />
|