mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
15 lines
310 B
Vue
15 lines
310 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('grid gap-1.5 p-4 text-center sm:text-left', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|