mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-13 08:48:38 +01:00
20 lines
666 B
Vue
20 lines
666 B
Vue
<script lang="ts" setup>
|
|
import type { StepperDescriptionProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { StepperDescription, useForwardProps } from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<StepperDescriptionProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class')
|
|
|
|
const forwarded = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<StepperDescription v-slot="slotProps" v-bind="forwarded" :class="cn('text-xs text-muted-foreground', props.class)">
|
|
<slot v-bind="slotProps" />
|
|
</StepperDescription>
|
|
</template>
|