UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

10 lines (9 loc) 349 B
import { VuiStepProps } from "./Step"; import { StepSize, StepStatus } from "./types"; export type { VuiStepProps, StepSize, StepStatus }; type Props = { steps: VuiStepProps[]; className?: string; size?: StepSize; }; export declare const VuiSteps: ({ steps, className, size, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;