@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 790 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function IceSkating(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: 'M5.905 5h3.418a1 1 0 0 1 .928.629l1.143 2.856a3 3 0 0 0 2.207 1.83l4.717.926A2.084 2.084 0 0 1 20 13.286V14a1 1 0 0 1-1 1H5.105a1 1 0 0 1-.995-1.1l.8-8a1 1 0 0 1 .995-.9z' }), React.createElement('path', { d: 'M3 19h17a1 1 0 0 0 1-1' }), React.createElement('path', { d: 'M9 15v4' }), React.createElement('path', { d: 'M15 15v4' })))
})