react-stepper-component-simple
Version:
React stepper component with mobile and desktop config.
16 lines (15 loc) • 586 B
TypeScript
import { ReactElement, CSSProperties } from "react";
interface StepperComponentInterface {
children: Array<ReactElement>;
stepNumberBackgroundColour: string;
stepNumberTextColour: string;
stepNumberWidth: string;
stepNumberHeigth: string;
buttonStyles: CSSProperties;
contentWrapperStyles: CSSProperties;
stepTitleDirectionMobile: string;
stepTitleDirectionDesktop: string;
mobileBreakpoint: number;
}
declare const StepperComponent: (props: StepperComponentInterface) => import("react/jsx-runtime").JSX.Element;
export default StepperComponent;