mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
19 lines
331 B
Vue
19 lines
331 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
role="link"
|
|
aria-disabled="true"
|
|
aria-current="page"
|
|
:class="cn('font-normal text-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</template>
|