josemi / icons
v0.7.0
bomb
Download
Download the icon as SVG image.
Download Icon
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG
Using as SVG
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>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {BombIcon} from "@josemi-icons/react";

const MyComponent = () => {
    return (
        <BombIcon />
    );
};
Using with CSS
Install @josemi-icons/css and include the icon as a CSS class:
<i class="ji-bomb"></i>