react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 506 B
JavaScript
import React from 'react';
export default function DebugStepOverIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-debug-step-over ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 14a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m11.46-5.14l-1.59 6.89L15 14.16l3.8-2.38A7.972 7.972 0 0 0 12 8c-3.95 0-7.23 2.86-7.88 6.63l-1.97-.35C2.96 9.58 7.06 6 12 6c3.58 0 6.73 1.89 8.5 4.72l2.96-1.86z" />
</svg>
);
}