@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
13 lines (12 loc) • 517 B
TypeScript
interface WizardActionsProps {
cancelButtonText: string;
primaryButtonText: string;
previousButtonText: string;
onCancelClick: () => void;
onPreviousClick: () => void;
onPrimaryClick: () => void;
showPrevious: boolean;
isPrimaryLoading: boolean;
}
declare const WizardActions: ({ cancelButtonText, primaryButtonText, previousButtonText, onCancelClick, onPreviousClick, onPrimaryClick, showPrevious, isPrimaryLoading }: WizardActionsProps) => JSX.Element;
export default WizardActions;