mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-23 11:55:55 +00:00
28 lines
636 B
Svelte
28 lines
636 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
import {
|
|
buttonVariants,
|
|
type ButtonVariant,
|
|
type ButtonSize,
|
|
} from "$lib/components/ui/button/index.js";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
variant = "default",
|
|
size = "default",
|
|
...restProps
|
|
}: AlertDialogPrimitive.ActionProps & {
|
|
variant?: ButtonVariant;
|
|
size?: ButtonSize;
|
|
} = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Action
|
|
bind:ref
|
|
data-slot="alert-dialog-action"
|
|
class={cn(buttonVariants({ variant, size }), "cn-alert-dialog-action", className)}
|
|
{...restProps}
|
|
/>
|