mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 20:36:01 +01:00
12 lines
281 B
Vue
12 lines
281 B
Vue
<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>
|