UNPKG

react-stepper-component-simple

Version:
16 lines (15 loc) 586 B
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;