react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 481 B
JavaScript
import React from 'react';
export default function HandPointingRightIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-hand-pointing-right ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M21 9a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-4.47l-.13 1.21-2.2 4.94c-.2.5-.73.85-1.34.85H8.5c-.8 0-1.5-.73-1.5-1.5V10c0-.39.16-.74.43-1l4.2-4.9.77.74c.2.19.32.45.32.74l-.03.22L11 9h10M2 18v-8h3v8H2z" />
</svg>
);
}