shadcn-vue/apps/www/registry/default/ui/drawer/DrawerFooter.vue
2024-11-21 11:52:31 +08:00

15 lines
300 B
Vue

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