react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 776 B
JSX
import React, { Component } from 'react';
export default class MaterialUiIcon 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-material-ui-icon ${this.props.className}`}><path d="M8 16.613v-1.242l6-3.464V7.232L9 10.12 4 7.232V13l-1 .577L2 13V5l1.067-.616L9 7.809l3.933-2.27 2-1.155L16 5v8.062l-5.075 2.93 4.05 2.339L20 15.43V11l1-.577L22 11v5.584l-7.025 4.056L8 16.613zM22 9.75l-1 .577-1-.577V8.577L21 8l1 .577V9.75z"/></svg>
)
}
}