mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-11-04 05:27:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			269 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			269 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import React from "react";
 | 
						|
import "./fab.scss";
 | 
						|
 | 
						|
export function Fab(props) {
 | 
						|
    return (
 | 
						|
        <div className="component_fab" onClick={props.onClick}>
 | 
						|
            <div className="content">
 | 
						|
                {props.children}
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    );
 | 
						|
}
 |