mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-13 04:13:19 +08:00
20 lines
485 B
JavaScript
20 lines
485 B
JavaScript
/**
|
|
* @module mermaid
|
|
*/
|
|
|
|
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';
|
|
|
|
export { default as Mermaid } from './mermaid';
|
|
|
|
export const icons = {
|
|
infoIcon,
|
|
insertMermaidIcon,
|
|
previewModeIcon,
|
|
splitModeIcon,
|
|
sourceModeIcon
|
|
};
|