mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-29 18:36:34 -05:00
15 lines
291 B
Vue
15 lines
291 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('flex flex-col gap-y-1.5 p-6', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|