mirror of
https://github.com/zadam/trilium.git
synced 2025-11-08 14:25:51 +01:00
20 lines
482 B
JavaScript
20 lines
482 B
JavaScript
|
|
/**
|
||
|
|
* @module mermaid
|
||
|
|
*/
|
||
|
|
|
||
|
|
import infoIcon from './../theme/icons/info.svg';
|
||
|
|
import insertMermaidIcon from './../theme/icons/insert.svg';
|
||
|
|
import previewModeIcon from './../theme/icons/previewMode.svg';
|
||
|
|
import splitModeIcon from './../theme/icons/splitMode.svg';
|
||
|
|
import sourceModeIcon from './../theme/icons/sourceMode.svg';
|
||
|
|
|
||
|
|
export { default as Mermaid } from './mermaid';
|
||
|
|
|
||
|
|
export const icons = {
|
||
|
|
infoIcon,
|
||
|
|
insertMermaidIcon,
|
||
|
|
previewModeIcon,
|
||
|
|
splitModeIcon,
|
||
|
|
sourceModeIcon
|
||
|
|
};
|