mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
16 lines
267 B
Vue
16 lines
267 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<li
|
|
:class="cn('inline-flex items-center gap-1.5', props.class)"
|
|
>
|
|
<slot />
|
|
</li>
|
|
</template>
|