UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 878 B
import React, { Component } from 'react'; export default class NeedleIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-needle-icon ${this.props.className}`}><path d="M11.146 15.182l-1.414-1.414 1.414-1.414 1.415 1.414 1.414-1.414-1.414-1.415 1.414-1.414 1.414 1.414 1.414-1.414-2.828-2.828-7.071 7.07 2.828 2.83 1.414-1.415zm-8.07 3.828l3.12-3.12-2.12-2.122 9.899-9.9 2.121 2.122 1.414-1.415-1.414-1.414 1.414-1.414 4.243 4.243-1.414 1.414-1.414-1.414-1.415 1.414 2.122 2.121-9.9 9.9-2.121-2.122-4.536 4.536V19.01z"/></svg> ) } }