@keyvaluesystems/react-stepper
Version:
A fully customizable stepper component
13 lines (12 loc) • 341 B
TypeScript
/// <reference types="react" />
import "./styles.scss";
import type { IStepProps } from "./types";
/**
* Represents each step.
* Consist of node, label and connectors to previous and next step
* @function
* @param {IStepProps} props
* @returns {React.FC}
*/
declare const Step: (props: IStepProps) => JSX.Element;
export default Step;