UNPKG

@atlaskit/editor-plugin-alignment

Version:

Alignment plugin for @atlaskit/editor-core

14 lines 464 B
import React from 'react'; import { TEXT_COLLAPSED_MENU } from '@atlaskit/editor-common/toolbar'; import { ToolbarDropdownItemSection } from '@atlaskit/editor-toolbar'; export const MenuSection = ({ children, title, parents }) => { const hasSeparator = parents.some(parent => parent.key === TEXT_COLLAPSED_MENU.key); return /*#__PURE__*/React.createElement(ToolbarDropdownItemSection, { hasSeparator: hasSeparator, title: title }, children); };