import copy from 'copy-to-clipboard' import CopyIcon from '@images/icons/copy.inline.svg' const CopyText: React.FC<{ text: string }> = ({ text }) => { return (
{ copy(text) }} > {text} {text.slice(0, 6) + '...' + text.slice(-6)} {' '}
) } export default CopyText