mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 15:39:15 +02:00
16 lines
352 B
Vue
16 lines
352 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="sheet-footer"
|
|
:class="cn('mt-auto flex flex-col gap-2 p-4', props.class)
|
|
"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|