mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-01-12 02:11:28 +00:00
15 lines
372 B
Svelte
15 lines
372 B
Svelte
<script lang='ts'>
|
|
import { ContextMenu as ContextMenuPrimitive } from 'bits-ui'
|
|
|
|
import { cn } from '$lib/utils.js'
|
|
|
|
type $$Props = ContextMenuPrimitive.SeparatorProps
|
|
|
|
let className: $$Props['class'] = undefined
|
|
export { className as class }
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.Separator
|
|
class={cn('bg-border -mx-1 my-1 h-px', className)}
|
|
{...$$restProps}
|
|
/>
|