/** * Contain a button with a content that can be copied */ import {faCopy} from '@fortawesome/free-solid-svg-icons'; import {Button} from 'reactstrap'; import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; interface ButtonCopyInterface { text: string; content: any; } const ButtonCopy = ({text, content}: ButtonCopyInterface) => { return () } export default ButtonCopy;