UNPKG

webcoreui

Version:

UI component and template library for Astro, Svelte, and React apps styled with Sass.

18 lines (16 loc) 386 B
import type { IconProps } from '../Icon/icon' export type StepperProps = { items: { icon?: IconProps['type'] | string title?: string subTitle?: string completed?: boolean active?: boolean }[] color?: string completedColor?: string activeColor?: string borderless?: boolean vertical?: boolean className?: string }