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="M10 19C10 17.8954 10.8954 17 12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19ZM4 5C4 3.89543 4.89543 3 6 3C7.10457 3 8 3.89543 8 5C8 6.10457 7.10457 7 6 7C4.89543 7 4 6.10457 4 5ZM16 5C16 3.89543 16.8954 3 18 3C19.1046 3 20 3.89543 20 5C20 6.10457 19.1046 7 18 7C16.8954 7 16 6.10457 16 5ZM6 7L6 9C6 9 6 12 9 12C12 12 12 15 12 15L12 17M12 15C12 15 12 12 15 12C18 12 18 9 18 9L18 7" />
</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 {GitForkIcon} 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 GitForkIcon = () => (
<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="M10 19C10 17.8954 10.8954 17 12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19ZM4 5C4 3.89543 4.89543 3 6 3C7.10457 3 8 3.89543 8 5C8 6.10457 7.10457 7 6 7C4.89543 7 4 6.10457 4 5ZM16 5C16 3.89543 16.8954 3 18 3C19.1046 3 20 3.89543 20 5C20 6.10457 19.1046 7 18 7C16.8954 7 16 6.10457 16 5ZM6 7L6 9C6 9 6 12 9 12C12 12 12 15 12 15L12 17M12 15C12 15 12 12 15 12C18 12 18 9 18 9L18 7" />
</svg>
);
You can now use the icon component in your React application like any other React component.