16 lines
350 B
Vue
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>
|