react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 410 B
JavaScript
import React from 'react';
export default function DebugStepIntoIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-debug-step-into ${props.className}`}
viewBox="0 0 24 24"
>
<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-20v11l4.5-4.5 1.42 1.42L12 16.84 5.08 9.92 6.5 8.5 11 13V2h2z" />
</svg>
);
}