@ricons/ionicons5
Version: 
React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)
5 lines (4 loc) • 594 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function NotificationsSharp(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 480a80.09 80.09 0 0 0 73.3-48H182.7a80.09 80.09 0 0 0 73.3 48z', fill: 'currentColor' }), React.createElement('path', { d: 'M400 288v-60.53C400 157 372.64 95.61 304 80l-8-48h-80l-8 48c-68.88 15.61-96 76.76-96 147.47V288l-48 64v48h384v-48z', fill: 'currentColor' }))
})