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 4.5C10 4.5 11 6.5 12 6.5C13 6.5 14 4.5 14 4.5L15 8.5C18 8.5 19 5.5 19 5.5C22 8.5 21 16.5 21 16.5C21 16.5 19.25 15.25 18 15.5C16.75 15.75 16 17.5 16 17.5C16 17.5 15 15 14 15.5C13 16 12 19.5 12 19.5C12 19.5 11 16 10 15.5C9 15 8 17.5 8 17.5C8 17.5 7.25 15.75 6 15.5C4.75 15.25 3 16.5 3 16.5C3 16.5 2 8.5 5 5.5C5 5.5 6 8.5 9 8.5L10 4.5Z" />
</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 {BatIcon} 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 BatIcon = () => (
<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 4.5C10 4.5 11 6.5 12 6.5C13 6.5 14 4.5 14 4.5L15 8.5C18 8.5 19 5.5 19 5.5C22 8.5 21 16.5 21 16.5C21 16.5 19.25 15.25 18 15.5C16.75 15.75 16 17.5 16 17.5C16 17.5 15 15 14 15.5C13 16 12 19.5 12 19.5C12 19.5 11 16 10 15.5C9 15 8 17.5 8 17.5C8 17.5 7.25 15.75 6 15.5C4.75 15.25 3 16.5 3 16.5C3 16.5 2 8.5 5 5.5C5 5.5 6 8.5 9 8.5L10 4.5Z" />
</svg>
);
You can now use the icon component in your React application like any other React component.