UNPKG

@atlaskit/editor-common

Version:

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

13 lines (12 loc) 773 B
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 { SteppedRainbowIconDecoration, rainbow, disabledRainbow, } from './shared/SteppedRainbowIconDecoration'; export { DynamicStrokeIconDecoration } from './shared/DynamicStrokeIconDecoration'; export declare const IconTable: React.ComponentType<React.PropsWithChildren<IconProps>> & Loadable.LoadableComponent;