react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 725 B
JSX
import React, { Component } from 'react';
export default class RingIcon 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-ring-icon ${this.props.className}`}><path d="M12 10L8 4.4 9.6 2h4.8L16 4.4 12 10zm3.5-3.2l-1.2 1.7c2.2.9 3.7 3 3.7 5.5 0 3.3-2.7 6-6 6s-6-2.7-6-6c0-2.5 1.5-4.6 3.7-5.5L8.5 6.8C5.8 8.1 4 10.8 4 14c0 4.4 3.6 8 8 8s8-3.6 8-8c0-3.2-1.8-5.9-4.5-7.2z"/></svg>
)
}
}