@atlaskit/focused-task-close-account
Version:
This package contains all of the UI components needed to assemble the focused tasks for deactivating and deleting users' accounts in accordance with the GDPR "Right to be forgotten".
15 lines (14 loc) • 372 B
TypeScript
import React from 'react';
interface FooterProps {
currentScreenIdx: number;
numScreens: number;
submitButton: React.ReactNode;
onNext: () => void;
onPrevious: () => void;
onCancel: () => void;
secondaryActions: React.ReactNode;
}
export default class Footer extends React.Component<FooterProps> {
render(): React.JSX.Element;
}
export {};