@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 904 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function BuildingFortress(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: 'M7 21h1a1 1 0 0 0 1-1v-1h0a3 3 0 0 1 6 0m3 2h1a1 1 0 0 0 1-1V5l-3-2l-3 2v6h-4V5L7 3L4 5v15a1 1 0 0 0 1 1h2m8-2v1a1 1 0 0 0 1 1h2' }), React.createElement('path', { d: 'M7 7h0v.01' }), React.createElement('path', { d: 'M7 10h0v.01' }), React.createElement('path', { d: 'M7 13h0v.01' }), React.createElement('path', { d: 'M17 7h0v.01' }), React.createElement('path', { d: 'M17 10h0v.01' }), React.createElement('path', { d: 'M17 13h0v.01' })))
})