mirror of
https://github.com/BradNut/musicle-svelte
synced 2025-09-08 17:40:21 +00:00
21 lines
638 B
Svelte
21 lines
638 B
Svelte
<script lang="ts" module>
|
|
import type { FormPath as _FormPath } from "sveltekit-superforms";
|
|
type T = Record<string, unknown>;
|
|
type U = _FormPath<T>;
|
|
</script>
|
|
|
|
<script lang="ts" generics="T extends Record<string, unknown>, U extends _FormPath<T>">
|
|
import * as FormPrimitive from "formsnap";
|
|
import type { WithoutChild } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
form,
|
|
name,
|
|
...restProps
|
|
}: WithoutChild<FormPrimitive.FieldsetProps<T, U>> = $props();
|
|
</script>
|
|
|
|
<FormPrimitive.Fieldset bind:ref {form} {name} class={cn("space-y-2", className)} {...restProps} />
|