import React from 'react';
import CopyToClipboard from 'react-copy-to-clipboard';
import { Icon, Badge } from 'antd';
export default class CopyableIcon extends React.Component {
state = {
justCopied: false,
};
onCopied = () => {
this.setState({ justCopied: true }, () => {
setTimeout(() => {
this.setState({ justCopied: false });
}, 2000);
});
}
render() {
const { type, isNew } = this.props;
const text = ``;
return (
{type}
);
}
}