react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 492 B
JavaScript
import React from 'react';
export default function HandPointingDownIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-hand-pointing-down ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9.9 21V11l-3.2 1.69-.2.03c-.31 0-.57-.12-.76-.32L5 11.63l4.9-4.2c.26-.27.6-.43 1-.43h6.5c.77 0 1.5.7 1.5 1.5v4.36c0 .61-.35 1.14-.85 1.34l-4.94 2.2-1.21.13V21a1 1 0 0 1-1 1 1 1 0 0 1-1-1m9-16h-8V2h8v3z" />
</svg>
);
}