UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 822 B
import * as React from 'react' export default React.forwardRef(function Blur(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 21a9.01 9.01 0 0 0 2.32-.302a9.004 9.004 0 0 0 1.74-16.733A9 9 0 1 0 12 21z' }), React.createElement('path', { d: 'M12 3v17' }), React.createElement('path', { d: 'M12 12h9' }), React.createElement('path', { d: 'M12 9h8' }), React.createElement('path', { d: 'M12 6h6' }), React.createElement('path', { d: 'M12 18h6' }), React.createElement('path', { d: 'M12 15h8' }))) })