shadcn-vue/apps/www/registry/new-york/ui/select/SelectItemText.vue
2024-11-21 11:52:31 +08:00

12 lines
243 B
Vue

<script setup lang="ts">
import { SelectItemText, type SelectItemTextProps } from 'reka-ui'
const props = defineProps<SelectItemTextProps>()
</script>
<template>
<SelectItemText v-bind="props">
<slot />
</SelectItemText>
</template>