@nant-design/nant-icons
Version:
10 lines (7 loc) • 512 B
JSX
import React from 'react';
export const ClipboardOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M336 64h32a48 48 0 0 1 48 48v320a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V112a48 48 0 0 1 48-48h32" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
<rect x="176" y="32" width="160" height="64" rx="26.13" ry="26.13" fill="none" stroke={fill} strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};