react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 489 B
JavaScript
import React from 'react';
export default function HandPointingLeftIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-hand-pointing-left ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M3 9h10l-1.69-3.2-.03-.22c0-.29.12-.55.32-.74l.77-.74 4.2 4.9c.27.26.43.61.43 1v6.5c0 .77-.7 1.5-1.5 1.5h-4.36c-.61 0-1.14-.35-1.34-.85l-2.2-4.94L7.47 11H3a1 1 0 0 1-1-1 1 1 0 0 1 1-1m16 9v-8h3v8h-3z" />
</svg>
);
}