UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 691 B
import React, { Component } from 'react'; export default class ChartAreasplineIcon 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-areaspline-icon ${this.props.className}`}><path d="M17.453 15.184L22 7.31V21H2V3h2v12.536l5.495-9.518 6.512 3.76 4.233-7.332 1.732 1-5.233 9.064-6.512-3.76L4.31 19h2.263l4.39-7.563 6.491 3.747z"/></svg> ) } }