mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 01:11:38 +03:00
15 lines
378 B
Svelte
15 lines
378 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils/style.js';
|
|
|
|
type $$Props = DropdownMenuPrimitive.SeparatorProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.Separator
|
|
class={cn('-mx-1 my-1 h-px bg-muted', className)}
|
|
{...$$restProps}
|
|
/>
|