frontend/components/ui/drawer/DrawerFooter.vue

18 lines
343 B
Vue
Raw Normal View History

<script lang="ts" setup>
import type { HtmlHTMLAttributes } from "vue";
2025-06-26 22:39:02 +02:00
import { cn } from "@/lib/utils";
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>