2025-05-04 15:10:45 +03:00
|
|
|
import './augmentation.js';
|
|
|
|
|
|
|
|
export { default as Mermaid } from './mermaid.js';
|
2025-05-04 17:12:49 +03:00
|
|
|
import infoIcon from './../theme/icons/info.svg';
|
|
|
|
import insertMermaidIcon from './../theme/icons/insert.svg';
|
|
|
|
import previewModeIcon from './../theme/icons/preview-mode.svg';
|
|
|
|
import splitModeIcon from './../theme/icons/split-mode.svg';
|
|
|
|
import sourceModeIcon from './../theme/icons/source-mode.svg';
|
2025-05-04 15:10:45 +03:00
|
|
|
|
|
|
|
export const icons = {
|
2025-05-04 17:12:49 +03:00
|
|
|
infoIcon,
|
|
|
|
insertMermaidIcon,
|
|
|
|
previewModeIcon,
|
|
|
|
splitModeIcon,
|
|
|
|
sourceModeIcon
|
2025-05-04 15:10:45 +03:00
|
|
|
};
|