react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 791 B
JSX
import React, { Component } from 'react';
export default class EyedropperIcon 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-eyedropper-icon ${this.props.className}`}><path d="M19.346 11.725l-2.121 2.121-1.414-1.414-7.71 7.71L3.5 22 2 20.5l1.858-4.6 7.71-7.71-1.414-1.415 2.121-2.121 7.071 7.07zM16.757 3A3 3 0 1 1 21 7.243l-1.922 1.921-4.242-4.242L16.757 3zm-11.2 14.028L4.5 19.5l2.472-1.058 7.424-7.424-1.414-1.414-7.424 7.424z"/></svg>
)
}
}