import * as React from 'react'; import CopyToClipboard from 'react-copy-to-clipboard'; import { Icon as AntdIcon, Badge } from 'antd'; const Icon = AntdIcon; const CopyableIcon = ({ type, theme, isNew, justCopied, onCopied, }) => { return (`} onCopy={() => onCopied(type)}>
  • {type}
  • ); }; export default CopyableIcon;