react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 367 B
JavaScript
import React from 'react';
export default function SubdirectoryArrowRightIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-subdirectory-arrow-right ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" />
</svg>
);
}