@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
17 lines (16 loc) • 496 B
TypeScript
export type { StepVerticalStatus } from "./types";
export type StepsVertical = {
id: string;
title: string;
isActive?: boolean;
hasErrors?: boolean;
icon: React.ReactNode;
onSelect: () => void;
"data-testid"?: string;
}[];
type Props = {
steps: StepsVertical;
className?: string;
"data-testid"?: string;
};
export declare const VuiStepsVertical: ({ steps, className, "data-testid": dataTestId, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;