react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 715 B
JSX
import React, { Component } from 'react';
export default class AngularIcon 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-angular-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 2.1L6.471 16.997h2.062l1.111-2.774h4.693l1.111 2.774h2.062L12 4.599zm1.615 7.913h-3.23L12 8.627l1.615 3.886z"/></svg>
)
}
}