react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 448 B
JavaScript
import React from 'react';
export default function DirectionsIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-directions ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14 14.5V12h-4v3H8v-4a1 1 0 0 1 1-1h5V7.5l3.5 3.5m4.21.29l-9-9h-.01a.996.996 0 0 0-1.41 0l-9 9c-.39.39-.39 1.03 0 1.42l9 9c.39.38 1.02.39 1.42 0l9-9c.39-.39.39-1.03 0-1.42z" />
</svg>
);
}