UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

22 lines (21 loc) 975 B
// Disable no-re-export rule for entry point files /* eslint-disable @atlaskit/editor/no-re-export */ import Loadable from 'react-loadable'; export { PanelInfoIcon } from './shared/PanelInfoIcon'; export { PanelWarningIcon } from './shared/PanelWarningIcon'; export { PanelErrorIcon } from './shared/PanelErrorIcon'; export { PanelSuccessIcon } from './shared/PanelSuccessIcon'; export { PanelNoteIcon } from './shared/PanelNoteIcon'; export { BorderIcon } from './shared/BorderIcon'; export { SteppedRainbowIconDecoration, rainbow, disabledRainbow } from './shared/SteppedRainbowIconDecoration'; export { DynamicStrokeIconDecoration } from './shared/DynamicStrokeIconDecoration'; export var IconTable = Loadable({ loader: function loader() { return import( /* webpackChunkName: "@atlaskit-internal_editor-icon-table" */'../icons/shared/table').then(function (module) { return module.default; }); }, loading: function loading() { return null; } });