mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
14 lines
279 B
Vue
14 lines
279 B
Vue
<script lang="ts" setup>
|
|
import type { HtmlHTMLAttributes } from "vue";
|
|
|
|
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>
|