@ricons/ionicons5
Version:
React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)
7 lines (6 loc) • 843 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true })
const React = require('react')
exports.default = React.forwardRef(function LocationOutline(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('path', { d: 'M256 48c-79.5 0-144 61.39-144 137c0 87 96 224.87 131.25 272.49a15.77 15.77 0 0 0 25.5 0C304 409.89 400 272.07 400 185c0-75.61-64.5-137-144-137z', fill: 'none', stroke: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32' }), React.createElement('circle', { cx: '256', cy: '192', r: '48', fill: 'none', stroke: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32' }))
})