@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
17 lines • 676 B
JavaScript
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 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;
}
});