UNPKG

@ricons/tabler

Version:

React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)

5 lines (4 loc) 802 B
import * as React from 'react' export default React.forwardRef(function ChargingPile(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('path', { d: 'M18 7l-1 1' }), React.createElement('path', { d: 'M14 11h1a2 2 0 0 1 2 2v3a1.5 1.5 0 0 0 3 0V9l-3-3' }), React.createElement('path', { d: 'M4 20V6a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v14' }), React.createElement('path', { d: 'M9 11.5L7.5 14h3L9 16.5' }), React.createElement('path', { d: 'M3 20h12' }), React.createElement('path', { d: 'M4 8h10' }))) })