@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
25 lines (24 loc) • 666 B
TypeScript
import { IconProps } from "atoms";
declare type WrapperProps = {
active: boolean;
completed?: boolean;
isClickable: boolean;
};
export declare type StepItemProps = WrapperProps & {
count?: number;
first?: boolean;
last?: boolean;
label: string;
labelSecondary?: string;
handleClick?: (e: StepItemProps) => void;
variant: string;
textAnchor?: string;
width?: number;
widthOffset?: number;
widthOffsetStroke?: number;
borderWidth?: number;
activeStepIconProps?: IconProps;
completedStepIconProps?: IconProps;
};
declare const _default: (props: StepItemProps) => JSX.Element;
export default _default;