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="M12 5C12 5 12 3 10 3C8 3 8 5 8 5C8 5 6 5 6 7C6 7 3 8 3 12C3 15 5 16 5 16C5 19 8 19 8 19C8 19 8 21 10 21C12 21 12 19 12 19L12 5M13 17L17 17L19 19M18.5 19.5C18.5 19.2239 18.7239 19 19 19C19.2761 19 19.5 19.2239 19.5 19.5C19.5 19.7761 19.2761 20 19 20C18.7239 20 18.5 19.7761 18.5 19.5ZM20 8C20 7.72386 20.2239 7.5 20.5 7.5C20.7761 7.5 21 7.72386 21 8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8ZM17.5 4.5C17.5 4.22386 17.7239 4 18 4C18.2761 4 18.5 4.22386 18.5 4.5C18.5 4.77614 18.2761 5 18 5C17.7239 5 17.5 4.77614 17.5 4.5ZM15 13C15 12.7239 15.2239 12.5 15.5 12.5C15.7761 12.5 16 12.7239 16 13C16 13.2761 15.7761 13.5 15.5 13.5C15.2239 13.5 15 13.2761 15 13ZM13 8L20 8M16 8C18 8 18 5 18 5M13 13L15 13" />
</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 {BrainCircuitIcon} 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 BrainCircuitIcon = () => (
<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="M12 5C12 5 12 3 10 3C8 3 8 5 8 5C8 5 6 5 6 7C6 7 3 8 3 12C3 15 5 16 5 16C5 19 8 19 8 19C8 19 8 21 10 21C12 21 12 19 12 19L12 5M13 17L17 17L19 19M18.5 19.5C18.5 19.2239 18.7239 19 19 19C19.2761 19 19.5 19.2239 19.5 19.5C19.5 19.7761 19.2761 20 19 20C18.7239 20 18.5 19.7761 18.5 19.5ZM20 8C20 7.72386 20.2239 7.5 20.5 7.5C20.7761 7.5 21 7.72386 21 8C21 8.27614 20.7761 8.5 20.5 8.5C20.2239 8.5 20 8.27614 20 8ZM17.5 4.5C17.5 4.22386 17.7239 4 18 4C18.2761 4 18.5 4.22386 18.5 4.5C18.5 4.77614 18.2761 5 18 5C17.7239 5 17.5 4.77614 17.5 4.5ZM15 13C15 12.7239 15.2239 12.5 15.5 12.5C15.7761 12.5 16 12.7239 16 13C16 13.2761 15.7761 13.5 15.5 13.5C15.2239 13.5 15 13.2761 15 13ZM13 8L20 8M16 8C18 8 18 5 18 5M13 13L15 13" />
</svg>
);
You can now use the icon component in your React application like any other React component.