Initial commit.

This commit is contained in:
Mateusz Zagórski
2022-03-04 13:39:39 +01:00
commit 302a0dc2ef
34 changed files with 2137 additions and 0 deletions

19
src/index.js Normal file
View File

@@ -0,0 +1,19 @@
/**
* @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
};