UNPKG

@atlaskit/editor-plugin-help-dialog

Version:

Help Dialog plugin for @atlaskit/editor-core

10 lines (9 loc) 368 B
import { jsx } from '@emotion/react'; import type { OnCloseHandler } from '@atlaskit/modal-dialog'; import type { Format } from './Format'; interface ModalContentProps { formatting: Format[]; onClose: OnCloseHandler | undefined; } export declare const ModalContent: ({ formatting, onClose }: ModalContentProps) => jsx.JSX.Element; export default ModalContent;