frontend/app/components/ui/select/SelectItemText.vue

12 lines
281 B
Vue
Raw Normal View History

<script setup lang="ts">
import { SelectItemText, type SelectItemTextProps } from "reka-ui";
const props = defineProps<SelectItemTextProps>();
</script>
<template>
2025-12-09 22:32:22 +01:00
<SelectItemText data-slot="select-item-text" v-bind="props">
<slot/>
</SelectItemText>
</template>