UNPKG

@ricons/ionicons5

Version:

React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)

5 lines (4 loc) 460 B
import * as React from 'react' export default React.forwardRef(function PinSharp(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: 'M339 99a83 83 0 1 0-102 80.8V464l19 32l19-32V179.8A83.28 83.28 0 0 0 339 99zm-59-6a21 21 0 1 1 21-21a21 21 0 0 1-21 21z', fill: 'currentColor' })) })