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 5ZM9.5 9.5L14.5 14.5M9.5 14.5L14.5 9.5" />
</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 {BadgeXIcon} 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 BadgeXIcon = () => (
<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="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 5ZM9.5 9.5L14.5 14.5M9.5 14.5L14.5 9.5" />
</svg>
);
You can now use the icon component in your React application like any other React component.