UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 809 B
import * as React from 'react' export default React.forwardRef(function BrandAndroid(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: 'M4 10v6' }), React.createElement('path', { d: 'M20 10v6' }), React.createElement('path', { d: 'M7 9h10v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V9a5 5 0 0 1 10 0' }), React.createElement('path', { d: 'M8 3l1 2' }), React.createElement('path', { d: 'M16 3l-1 2' }), React.createElement('path', { d: 'M9 18v3' }), React.createElement('path', { d: 'M15 18v3' }))) })