@axa-fr/react-toolkit-form-steps
Version:
1. [Installation](#installation) 2. [Old Design Steps](#old-design-steps) 3. [New Design Steps](#new-design-steps)
9 lines • 401 B
TypeScript
import { ComponentPropsWithoutRef } from 'react';
import StepLink from './StepLink';
declare type Props = Omit<ComponentPropsWithoutRef<typeof StepLink>, 'href'> & {
href?: string;
mode?: 'link' | 'active' | 'disabled';
};
declare const Step: ({ number, id, title, classModifier, href, onClick, mode, className, }: Props) => JSX.Element;
export default Step;
//# sourceMappingURL=Step.d.ts.map