react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 736 B
JSX
import React, { Component } from 'react';
export default class DebugStepOverIcon 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-debug-step-over-icon ${this.props.className}`}><path d="M12 14a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm11.461-5.135l-1.59 6.89-6.89-1.591 3.816-2.385a8.002 8.002 0 0 0-14.68 2.847l-1.97-.347C2.965 9.576 7.065 6 12 6a9.994 9.994 0 0 1 8.494 4.72l2.967-1.855z"/></svg>
)
}
}