react-material-icon-svg
Version:
React material icon jsx version
10 lines (8 loc) • 351 B
JavaScript
import React from 'react';
export default function DebugStepOutIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-debug-step-out ${props.className}`}>
<path d="M12 22a2 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 2m1-6h-2V6l-4.5 4.5-1.42-1.42L12 2.16l6.92 6.92-1.42 1.42L13 6v10z" />
</svg>
);
}