react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 804 B
JSX
import React, { Component } from 'react';
export default class UnityIcon 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-unity-icon ${this.props.className}`}><path d="M9.113 17H6.5l-4.914-5L6.5 7h2.613l1.307-2.263 6.787-1.756 1.873 6.756L17.774 12l1.306 2.263-1.873 6.756-6.787-1.756L9.113 17zm.142-.245l5.129 1.374L11.423 13H5.5l3.755 3.755zm6.861.374L17.49 12l-1.374-5.13L13.155 12l2.961 5.13zM9.255 7.245L5.5 11h5.923l2.961-5.13-5.13 1.375z"/></svg>
)
}
}