mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 13:21:45 +00:00
20 lines
430 B
Svelte
20 lines
430 B
Svelte
<script lang="ts">
|
|
import { Separator } from '$lib/components/ui/separator/index.js';
|
|
import { cn } from '$lib/utils/style.js';
|
|
import type { ComponentProps } from 'svelte';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: ComponentProps<typeof Separator> = $props();
|
|
</script>
|
|
|
|
<Separator
|
|
bind:ref
|
|
data-slot="item-separator"
|
|
orientation="horizontal"
|
|
class={cn('my-0', className)}
|
|
{...restProps}
|
|
/>
|