Copy and paste the following SVG code into your HTML file where you want the icon to appear. Then, you can customize the SVG attributes, such as size or color, using inline styling or CSS classes.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 17C2 12 4 11 4 11C5.1767 10.2155 6 11 6 11L8 13L8 4C8 2 11 2 11 4L11 12L11 10C11 8 14 8 14 10L14 12L14 11C14 9 17 9 17 11L17 12L17 12C17 10 20 10 20 12L20 16C20 16 20 21 15 21L12 21C9 21 7.7669 19.2086 6 17ZM15 5L16 5M3 5L4 5M4 2L5 3M14 3L15 2" />
</svg>
You can integrate this icon in your React application using our React icons components. First install the package using YARN or NPM:
$ yarn add @josemi-icons/react
Now you can import this icon in your React application
import {HandClickIcon} from "@josemi-icons/react";
Alternatively, if you only need this icon jou can just copy and paste the following component into your React application:
const HandClickIcon = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
<path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 17C2 12 4 11 4 11C5.1767 10.2155 6 11 6 11L8 13L8 4C8 2 11 2 11 4L11 12L11 10C11 8 14 8 14 10L14 12L14 11C14 9 17 9 17 11L17 12L17 12C17 10 20 10 20 12L20 16C20 16 20 21 15 21L12 21C9 21 7.7669 19.2086 6 17ZM15 5L16 5M3 5L4 5M4 2L5 3M14 3L15 2" />
</svg>
);
You can now use the icon component in your React application like any other React component.