@axa-fr/react-toolkit-form-steps
Version:
1. [Installation](#installation) 2. [Old Design Steps](#old-design-steps) 3. [New Design Steps](#new-design-steps)
11 lines • 336 B
TypeScript
import { ReactNode } from 'react';
declare type Props = {
id: string;
title: string;
children?: ReactNode;
className?: string;
classModifier?: string;
};
declare const StepBase: ({ children, id, title, className, classModifier }: Props) => JSX.Element;
export default StepBase;
//# sourceMappingURL=StepBase.d.ts.map