mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00

- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
11 lines
245 B
Vue
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>
|