UNPKG

@keyvaluesystems/react-stepper

Version:

A fully customizable stepper component

12 lines (11 loc) 371 B
/// <reference types="react" /> import "./styles.scss"; import { IStepContentProps } from "./types"; /** * Gives the step content considering the orientation * Can customize styles and nodeWidth of each step * @param {IStepContentProps} props * @returns {React.FC} */ declare const StepContent: (props: IStepContentProps) => JSX.Element; export default StepContent;