it-tools/packages/app/src/modules/ui/components/select/SelectItemText.vue
Corentin Thomasset b88f13a7ca
feat(tools): added token generator
- Added Slider component to the UI library
- Added Checkbox component to the UI library
- Added Textarea component to the UI library
2024-10-26 23:51:56 +02:00

11 lines
245 B
Vue

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