mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-22 17:25:06 +03:00
19 lines
478 B
Svelte
19 lines
478 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from 'bits-ui';
|
|
import { buttonVariants } from '$lib/components/ui/button/index.js';
|
|
import { cn } from '$lib/utils/style.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: AlertDialogPrimitive.CancelProps = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Cancel
|
|
bind:ref
|
|
data-slot="alert-dialog-cancel"
|
|
class={cn(buttonVariants({ variant: 'outline' }), className)}
|
|
{...restProps}
|
|
/>
|