@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 805 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function Usb(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 24 24' }, props, { ref: ref }), React.createElement('g', { fill: 'none', stroke: 'currentColor', 'stroke-width': '2', 'stroke-linecap': 'round', 'stroke-linejoin': 'round' }, React.createElement('circle', { cx: '12', cy: '19', r: '2' }), React.createElement('path', { d: 'M12 17V5.5' }), React.createElement('path', { d: 'M7 10v3l5 3' }), React.createElement('path', { d: 'M12 14.5l5-2V10' }), React.createElement('path', { d: 'M16 10h2V8h-2z' }), React.createElement('circle', { cx: '7', cy: '9', r: '1' }), React.createElement('path', { d: 'M10 5.5h4L12 3z' })))
})