mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
21 lines
419 B
Vue
21 lines
419 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
role="presentation"
|
|
aria-hidden="true"
|
|
:class="cn('flex h-9 w-9 items-center justify-center', props.class)"
|
|
>
|
|
<slot>
|
|
<DotsHorizontalIcon class="h-4 w-4" />
|
|
</slot>
|
|
<span class="sr-only">More</span>
|
|
</span>
|
|
</template>
|