UNPKG

@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".

22 lines (21 loc) 555 B
import React from 'react'; import { type Placement } from '@atlaskit/inline-dialog'; interface Props { children: React.ReactNode; content: React.ReactNode; placement?: Placement; } interface State { isOpen: boolean; } export declare class StatefulInlineDialog extends React.Component<Props, State> { state: { isOpen: boolean; }; openDialog: () => void; closeDialog: () => void; handleMouseOver: () => void; handleMouseOut: () => void; render(): React.JSX.Element; } export default StatefulInlineDialog;