react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 636 B
JSX
import React, { Component } from 'react';
export default class PolymerIcon 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-polymer-icon ${this.props.className}`}><path d="M19 3.998h-4L7.103 16.63 4.5 11.998l4.5-8H5l-4.5 8 4.5 8h4l7.895-12.632 2.605 4.632-4.5 8h4l4.5-8-4.5-8z"/></svg>
)
}
}