2022-03-04 13:39:39 +01:00
|
|
|
/**
|
|
|
|
|
* @module mermaid
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import infoIcon from './../theme/icons/info.svg';
|
|
|
|
|
import insertMermaidIcon from './../theme/icons/insert.svg';
|
2022-03-08 11:07:02 +01:00
|
|
|
import previewModeIcon from './../theme/icons/preview-mode.svg';
|
|
|
|
|
import splitModeIcon from './../theme/icons/split-mode.svg';
|
|
|
|
|
import sourceModeIcon from './../theme/icons/source-mode.svg';
|
2022-03-04 13:39:39 +01:00
|
|
|
|
2024-05-20 14:27:21 +02:00
|
|
|
export { default as Mermaid } from './mermaid.js';
|
2022-03-04 13:39:39 +01:00
|
|
|
|
|
|
|
|
export const icons = {
|
|
|
|
|
infoIcon,
|
|
|
|
|
insertMermaidIcon,
|
|
|
|
|
previewModeIcon,
|
|
|
|
|
splitModeIcon,
|
|
|
|
|
sourceModeIcon
|
|
|
|
|
};
|