mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-03 05:29:05 +00:00
8 lines
228 B
Svelte
8 lines
228 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "bits-ui";
|
|
|
|
let { ref = $bindable(null), ...restProps }: CommandPrimitive.LoadingProps = $props();
|
|
</script>
|
|
|
|
<CommandPrimitive.Loading bind:ref {...restProps} />
|