react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 641 B
JSX
import React, { Component } from 'react';
export default class LoopIcon 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-loop-icon ${this.props.className}`}><path d="M9 14v7H2v-2h3.572A9.467 9.467 0 0 1 3 12.5a9.5 9.5 0 1 1 9.5 9.5l-.5-.013v-2.003l.5.016A7.5 7.5 0 1 0 7 17.6V14h2z"/></svg>
)
}
}