frontend/components/ui/select/SelectItemText.vue

15 lines
285 B
Vue
Raw Normal View History

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