react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 693 B
JSX
import React, { Component } from 'react';
export default class AsteriskIcon 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-asterisk-icon ${this.props.className}`}><path d="M10 2h4l-.79 7.905 6.45-4.637 2 3.464L14.42 12l7.241 3.268-2 3.464-6.45-4.637L14 22h-4l.79-7.905-6.45 4.637-2-3.464L9.58 12 2.34 8.732l2-3.464 6.45 4.637L10 2z"/></svg>
)
}
}