Files
better-auth/examples/nuxt-example/components/ui/stepper/StepperDescription.vue
Bereket Engida 9f2e45b8c7 chore: cleanup
2025-01-06 14:30:39 +03:00

24 lines
646 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import type { StepperDescriptionProps } from "radix-vue";
import { useForwardProps } from "radix-vue";
const props = defineProps<
StepperDescriptionProps & { class?: HTMLAttributes["class"] }
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
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>