frontend/components/ui/drawer/DrawerFooter.vue
2025-04-10 13:55:56 +02:00

18 lines
343 B
Vue

<script lang="ts" setup>
import { cn } from "@/lib/utils";
import type { HtmlHTMLAttributes } from "vue";
const props = defineProps<{
class?: HtmlHTMLAttributes["class"];
}>();
</script>
<template>
<div
data-slot="drawer-footer"
:class="cn('mt-auto flex flex-col gap-2 p-4', props.class)"
>
<slot />
</div>
</template>