const CopyIcon = ({width = '26', height = '26', color = 'currentColor'}) => (
	<svg width={width} height={height} viewBox="0 0 13 13">
		<rect x="4.8" y="1" width="7.2" height="7.2" rx="0.65" ry="0.65" fill="transparent" stroke={color} strokeWidth="2" />
		<rect x="1" y="4.8" width="7.2" height="7.2" rx="0.65" ry="0.65" fill={color} stroke={color} strokeWidth="2" />
	</svg>
);

export default CopyIcon;
