mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-30 02:46:44 -05:00
14 lines
272 B
Vue
14 lines
272 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<caption :class="cn('mt-4 text-sm text-muted-foreground', props.class)">
|
|
<slot />
|
|
</caption>
|
|
</template>
|