import * as React from 'react'; import { Button, Icon, Tooltip, useClipboard } from '@chakra-ui/core'; export const CopyButton = ({ bg = 'secondary', copyValue, ...props }) => { const { onCopy, hasCopied } = useClipboard(copyValue); return ( ); };