formik-pf
Version:
A UI library that provides formik bindings with PF components.
10 lines (9 loc) • 380 B
TypeScript
import * as React from 'react';
type InternalWizardFooterProps = {
nextButtonText?: React.ReactNode;
backButtonText?: React.ReactNode;
cancelButtonText?: React.ReactNode;
onBack?: (nextStepIndex: number, prevStepIndex: number) => void;
};
declare const InternalWizardFooter: React.FunctionComponent<InternalWizardFooterProps>;
export default InternalWizardFooter;