interface StepsProps {
    children?: ReactNode;
    className?: string;
    current?: number;
    direction?: "horizontal" | "vertical";
    iconPrefix?: string;
    initial?: number;
    items?: Antd.StepProps[];
    labelPlacement?: "horizontal" | "vertical";
    onChange?: ((current) => void);
    percent?: number;
    prefixCls?: string;
    progressDot?: boolean | ProgressDotRender;
    responsive?: boolean;
    rootClassName?: string;
    size?: "default" | "small";
    status?: "error" | "wait" | "finish" | "process";
    style?: CSSProperties;
    type?: "default" | "inline" | "navigation";
}

Properties

children?: ReactNode
className?: string
current?: number
direction?: "horizontal" | "vertical"
iconPrefix?: string
initial?: number
items?: Antd.StepProps[]
labelPlacement?: "horizontal" | "vertical"
onChange?: ((current) => void)

Type declaration

    • (current): void
    • Parameters

      • current: number

      Returns void

percent?: number
prefixCls?: string
progressDot?: boolean | ProgressDotRender
responsive?: boolean
rootClassName?: string
size?: "default" | "small"
status?: "error" | "wait" | "finish" | "process"
style?: CSSProperties
type?: "default" | "inline" | "navigation"

Generated using TypeDoc