react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 623 B
JSX
import React, { Component } from 'react';
export default class ChartLineVariantIcon 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-line-variant-icon ${this.props.className}`}><path d="M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z"/></svg>
)
}
}