react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 786 B
JSX
import React, { Component } from 'react';
export default class AngularjsIcon 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-angularjs-icon ${this.props.className}`}><path d="M12 2.5l8.845 3.154-1.35 11.695L12 21.5l-7.495-4.151-1.35-11.695L12 2.5zm0 2L5.018 6.99l1.064 9.232L12 19.5l5.918-3.277 1.065-9.233L12 4.5zm0 1.22l4.579 10.303h-1.713l-.924-2.306h-3.9l-.924 2.306H7.405L12 5.72zm1.342 6.576L12 9.067l-1.342 3.23h2.684z"/></svg>
)
}
}