@nant-design/nant-icons
Version:
10 lines (7 loc) • 527 B
JSX
import React from 'react';
export const CopyOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<rect x="128" y="128" width="336" height="336" rx="57" ry="57" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
<path d="m383.5 128 .5-24a56.16 56.16 0 0 0-56-56H112a64.19 64.19 0 0 0-64 64v216a56.16 56.16 0 0 0 56 56h24" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};