react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 751 B
JSX
import React, { Component } from 'react';
export default class ChartScatterplotHexbinIcon 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-chart-scatterplot-hexbin-icon ${this.props.className}`}><path d="M2 2h2v18h18v2H2V2zm12 12.5L11.98 18H7.937l-2.02-3.5 2.02-3.5h4.041L14 14.5zm.083-8l-2.02 3.5H8.02L6 6.5 8.02 3h4.042l2.02 3.5zm7.167 4L19.23 14h-4.042l-2.02-3.5 2.02-3.5h4.041l2.021 3.5z"/></svg>
)
}
}