mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 11:39:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			152 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			152 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| interface IconProps {
 | |
|     icon?: string;
 | |
| }
 | |
| 
 | |
| export default function Icon({ icon }: IconProps) {
 | |
|     return <span class={icon ?? "bx bx-empty"}></span>
 | |
| } | 
