mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-23 01:11:49 +03:00
29 lines
852 B
Svelte
29 lines
852 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
||
|
|
import * as AlertDialog from "./index.js";
|
||
|
|
import { cn, flyAndScale } from "$lib/utils/style.js";
|
||
|
|
|
||
|
|
type $$Props = AlertDialogPrimitive.ContentProps;
|
||
|
|
|
||
|
|
export let transition: $$Props["transition"] = flyAndScale;
|
||
|
|
export let transitionConfig: $$Props["transitionConfig"] = undefined;
|
||
|
|
|
||
|
|
let className: $$Props["class"] = undefined;
|
||
|
|
export { className as class };
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<AlertDialog.Portal>
|
||
|
|
<AlertDialog.Overlay />
|
||
|
|
<AlertDialogPrimitive.Content
|
||
|
|
{transition}
|
||
|
|
{transitionConfig}
|
||
|
|
class={cn(
|
||
|
|
"bg-background fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg sm:rounded-lg md:w-full",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...$$restProps}
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</AlertDialogPrimitive.Content>
|
||
|
|
</AlertDialog.Portal>
|