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="M17.7035 11.4051C17.8965 12.0699 18 12.7729 18 13.5C18 17.6421 14.6421 21 10.5 21C6.35786 21 3 17.6421 3 13.5C3 9.35786 6.35786 6 10.5 6C11.2589 6 11.9915 6.11272 12.682 6.32234M13 6L14 5C14 5 15 4 16 5L19 8C20 9 19 10 19 10L18 11M18 6L19 5C20 4 21 4 21 4M7 13C7 11 9 10 10 10" />
</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 {BombIcon} 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 BombIcon = () => (
<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="M17.7035 11.4051C17.8965 12.0699 18 12.7729 18 13.5C18 17.6421 14.6421 21 10.5 21C6.35786 21 3 17.6421 3 13.5C3 9.35786 6.35786 6 10.5 6C11.2589 6 11.9915 6.11272 12.682 6.32234M13 6L14 5C14 5 15 4 16 5L19 8C20 9 19 10 19 10L18 11M18 6L19 5C20 4 21 4 21 4M7 13C7 11 9 10 10 10" />
</svg>
);
You can now use the icon component in your React application like any other React component.