mirror of
https://github.com/aljazceru/hypergolic.git
synced 2025-12-17 05:24:21 +01: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>
|