mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
25 lines
633 B
Svelte
25 lines
633 B
Svelte
<script lang="ts">
|
|
import { Dialog as DialogPrimitive } from 'bits-ui';
|
|
import { cn } from '@/utils/cn';
|
|
import { fade } from 'svelte/transition';
|
|
|
|
type $$Props = DialogPrimitive.OverlayProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let transition: $$Props['transition'] = fade;
|
|
export let transitionConfig: $$Props['transitionConfig'] = {
|
|
duration: 150
|
|
};
|
|
export { className as class };
|
|
</script>
|
|
|
|
<DialogPrimitive.Overlay
|
|
{transition}
|
|
{transitionConfig}
|
|
class={cn(
|
|
'fixed inset-0 z-50 bg-neutral-100/80 dark:bg-neutral-900/80 backdrop-blur-sm',
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
/>
|