UNPKG

@ricons/ionicons5

Version:

React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)

5 lines (4 loc) 726 B
import * as React from 'react' export default React.forwardRef(function CopyOutline(props, ref) { return React.createElement('svg', Object.assign({ xmlns: 'http://www.w3.org/2000/svg', xmlnsXlink: 'http://www.w3.org/1999/xlink', viewBox: '0 0 512 512' }, props, { ref: ref }), React.createElement('rect', { x: '128', y: '128', width: '336', height: '336', rx: '57', ry: '57', fill: 'none', stroke: 'currentColor', 'stroke-linejoin': 'round', 'stroke-width': '32' }), React.createElement('path', { d: 'M383.5 128l.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: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32' })) })