mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 19:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			488 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.js';
 | |
| 
 | |
| export const icons = {
 | |
| 	infoIcon,
 | |
| 	insertMermaidIcon,
 | |
| 	previewModeIcon,
 | |
| 	splitModeIcon,
 | |
| 	sourceModeIcon
 | |
| };
 | 
