mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 08:42:31 +00:00
22 lines
559 B
Svelte
22 lines
559 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.js";
|
|
|
|
type $$Props = AlertDialogPrimitive.ActionProps;
|
|
type $$Events = AlertDialogPrimitive.ActionEvents;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Action
|
|
class={cn(buttonVariants(), className)}
|
|
{...$$restProps}
|
|
on:click
|
|
on:keydown
|
|
let:builder
|
|
>
|
|
<slot {builder} />
|
|
</AlertDialogPrimitive.Action>
|