mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
18 lines
519 B
TypeScript
18 lines
519 B
TypeScript
import './augmentation.js';
|
|
|
|
export { default as Mermaid } from './mermaid.js';
|
|
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';
|
|
import "../theme/mermaid.css";
|
|
|
|
export const icons = {
|
|
infoIcon,
|
|
insertMermaidIcon,
|
|
previewModeIcon,
|
|
splitModeIcon,
|
|
sourceModeIcon
|
|
};
|