UNPKG

@vectara/vectara-ui

Version:

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

14 lines (13 loc) 468 B
import { StepProps } from "./Step"; import { StepSize, StepStatus } from "./types"; export type { StepSize, StepStatus }; export type Steps = Array<Omit<StepProps & { icon?: React.ReactNode; }, "stepNode">>; type Props = { steps: Steps; className?: string; size?: StepSize; "data-testid"?: string; }; export declare const VuiSteps: ({ steps, className, size, "data-testid": dataTestId, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;