mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
12 lines
245 B
Vue
12 lines
245 B
Vue
<script setup lang="ts">
|
|
import { SelectItemText, type SelectItemTextProps } from 'radix-vue'
|
|
|
|
const props = defineProps<SelectItemTextProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectItemText v-bind="props">
|
|
<slot />
|
|
</SelectItemText>
|
|
</template>
|