2024-12-01 17:20:21 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
2025-06-26 22:39:02 +02:00
|
|
|
import { cn } from "@/lib/utils";
|
2024-12-01 17:20:21 +01:00
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-09 22:32:22 +01:00
|
|
|
<div
|
|
|
|
|
data-slot="alert-dialog-footer"
|
|
|
|
|
:class="
|
2024-12-01 17:20:21 +01:00
|
|
|
cn(
|
2025-04-10 13:55:56 +02:00
|
|
|
'flex flex-col-reverse gap-2 sm:flex-row sm:justify-end',
|
2024-12-01 17:20:21 +01:00
|
|
|
props.class,
|
|
|
|
|
)
|
|
|
|
|
"
|
2025-12-09 22:32:22 +01:00
|
|
|
>
|
2026-01-09 21:47:12 +01:00
|
|
|
<slot />
|
2025-12-09 22:32:22 +01:00
|
|
|
</div>
|
2024-12-01 17:20:21 +01:00
|
|
|
</template>
|