josemi / icons
v0.7.0
badge
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="M9 5C9 5 10 3.5 12 3.5C14 3.5 15 5 15 5C15 5 17 5 18 6C19 7 19 9 19 9C19 9 20.5 10 20.5 12C20.5 14 19 15 19 15C19 15 19 17 18 18C17 19 15 19 15 19C15 19 14 20.5 12 20.5C10 20.5 9 19 9 19C9 19 7 19 6 18C5 17 5 15 5 15C5 15 3.5 14 3.5 12C3.5 10 5 9 5 9C5 9 5 7 6 6C7 5 9 5 9 5Z" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {BadgeIcon} from "@josemi-icons/react";

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