@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 779 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function LanguageHiragana(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 5h7' }), React.createElement('path', { d: 'M7 4c0 4.846 0 7 .5 8' }), React.createElement('path', { d: 'M10 8.5c0 2.286-2 4.5-3.5 4.5S4 11.865 4 11c0-2 1-3 3-3s5 .57 5 2.857c0 1.524-.667 2.571-2 3.143' }), React.createElement('path', { d: 'M12 20l4-9l4 9' }), React.createElement('path', { d: 'M19.1 18h-6.2' })))
})