@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
11 lines (10 loc) • 576 B
TypeScript
import type React from 'react';
import Loadable from 'react-loadable';
import type { IconProps } from '../types';
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 declare const IconTable: React.ComponentType<React.PropsWithChildren<IconProps>> & Loadable.LoadableComponent;