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

12 lines
282 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">
2026-01-09 21:47:12 +01:00
<slot />
2025-12-09 22:32:22 +01:00
</SelectItemText>
</template>