| 12345678910111213141516 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/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>
|