mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 18:16:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			271 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			271 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| 
 | |
| import './fab.scss';
 | |
| 
 | |
| export const Fab = (props) => {
 | |
|     return (
 | |
|         <div className="component_fab" onClick={props.onClick}>
 | |
|             <div className="content">
 | |
|               {props.children}
 | |
|             </div>
 | |
|         </div>
 | |
|     );
 | |
| }
 | 
