mirror of
https://github.com/wireadmin/wireadmin
synced 2025-06-26 18:28:06 +00:00
18 lines
442 B
Svelte
18 lines
442 B
Svelte
<script lang="ts">
|
|
import * as FormPrimitive from 'formsnap';
|
|
import { cn } from '@lib/utils.js';
|
|
|
|
type $$Props = FormPrimitive.LegendProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<FormPrimitive.Legend
|
|
{...$$restProps}
|
|
class={cn('text-sm font-medium leading-none data-[fs-error]:text-destructive', className)}
|
|
let:legendAttrs
|
|
>
|
|
<slot {legendAttrs} />
|
|
</FormPrimitive.Legend>
|