fix(Stepper): correct item value type

This commit is contained in:
Benjamin Canac
2024-12-27 11:21:34 +01:00
parent ffba108291
commit 4f05b1aac9

View File

@@ -15,7 +15,7 @@ type StepperVariants = VariantProps<typeof stepper>
export interface StepperItem {
slot?: string
value?: string
value?: string | number
title?: string
description?: string
icon?: string