hi-partner/src/components/ui/dialog/DialogFooter.vue
speakeloudest e233c87fe6
Some checks failed
site-dist-deploy / build-and-deploy (push) Has been cancelled
first commit
2026-01-29 04:16:00 -08:00

16 lines
350 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{ class?: HTMLAttributes["class"] }>()
</script>
<template>
<div
data-slot="dialog-footer"
:class="cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', props.class)"
>
<slot />
</div>
</template>