react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 716 B
JSX
import React, { Component } from 'react';
export default class SigmaLowerIcon 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-sigma-lower-icon ${this.props.className}`}><path d="M19 12c0 4.418-3.358 8-7.5 8C7.358 20 4 16.418 4 12s3.358-8 7.5-8H20v2h-3.54C18.019 7.466 19 9.61 19 12zm-7.5-6C8.462 6 6 8.686 6 12s2.462 6 5.5 6 5.5-2.686 5.5-6-2.462-6-5.5-6z"/></svg>
)
}
}