@ricons/ionicons5
Version:
React SVG icon components integrated from [`ionicons5`](https://ionicons.com/)
5 lines (4 loc) • 1.69 kB
JavaScript
import * as React from 'react'
export default React.forwardRef(function DiceOutline(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', { fill: 'none', stroke: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32', d: 'M448 341.37V170.61A32 32 0 0 0 432.11 143l-152-88.46a47.94 47.94 0 0 0-48.24 0L79.89 143A32 32 0 0 0 64 170.61v170.76A32 32 0 0 0 79.89 369l152 88.46a48 48 0 0 0 48.24 0l152-88.46A32 32 0 0 0 448 341.37z' }), React.createElement('path', { fill: 'none', stroke: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32', d: 'M69 153.99l187 110l187-110' }), React.createElement('path', { fill: 'none', stroke: 'currentColor', 'stroke-linecap': 'round', 'stroke-linejoin': 'round', 'stroke-width': '32', d: 'M256 463.99v-200' }), React.createElement('ellipse', { cx: '256', cy: '152', rx: '24', ry: '16', fill: 'currentColor' }), React.createElement('ellipse', { cx: '208', cy: '296', rx: '16', ry: '24', fill: 'currentColor' }), React.createElement('ellipse', { cx: '112', cy: '328', rx: '16', ry: '24', fill: 'currentColor' }), React.createElement('ellipse', { cx: '304', cy: '296', rx: '16', ry: '24', fill: 'currentColor' }), React.createElement('ellipse', { cx: '400', cy: '240', rx: '16', ry: '24', fill: 'currentColor' }), React.createElement('ellipse', { cx: '304', cy: '384', rx: '16', ry: '24', fill: 'currentColor' }), React.createElement('ellipse', { cx: '400', cy: '328', rx: '16', ry: '24', fill: 'currentColor' }))
})