UNPKG

@keyvaluesystems/react-stepper

Version:

A fully customizable stepper component

12 lines (11 loc) 342 B
/// <reference types="react" /> import "./styles.scss"; import type { IStepInfoProps } from "./types"; /** * To handle step display (inline or not) * Can handle description display and label * @param {IStepInfoProps} props * @returns {React.FC} */ declare const StepInfo: (props: IStepInfoProps) => JSX.Element; export default StepInfo;