UNPKG

@ricons/tabler

Version:

React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)

5 lines (4 loc) 754 B
import * as React from 'react' export default React.forwardRef(function Windmill(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: 'M12 12c2.76 0 5-2.01 5-4.5S14.76 3 12 3v9z' }), React.createElement('path', { d: 'M12 12c0 2.76 2.01 5 4.5 5s4.5-2.24 4.5-5h-9z' }), React.createElement('path', { d: 'M12 12c-2.76 0-5 2.01-5 4.5S9.24 21 12 21v-9z' }), React.createElement('path', { d: 'M12 12c0-2.76-2.01-5-4.5-5S3 9.24 3 12h9z' }))) })