mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-19 13:19:37 +02:00
- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
29 lines
686 B
Vue
29 lines
686 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/src/modules/shared/style/cn'
|
|
import { DialogTitle, type DialogTitleProps, useForwardProps } from 'radix-vue'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<DialogTitleProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTitle
|
|
v-bind="forwardedProps"
|
|
:class="
|
|
cn(
|
|
'text-lg font-semibold leading-none tracking-tight',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</DialogTitle>
|
|
</template>
|