mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 12:27:44 +00:00
15 lines
300 B
Vue
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>
|