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="M3 3L21 21M12.6722 8.64282C12.8533 8.2388 13 7.76614 13 7C13 5 11 4 11 4C11 4.97127 10.8113 5.75387 10.5073 6.42842M17.9243 14.028C17.5596 11.7798 16 11 16 11C16 11.2663 15.9291 11.5327 15.8061 11.7801M8.72536 8.87786C7.40495 10.3249 6 11.8195 6 15C6 16 7 21 12 21C14.9811 21 16.5403 19.2226 17.3134 17.5753" />
</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 {FlameSlashIcon} 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 FlameSlashIcon = () => (
<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="M3 3L21 21M12.6722 8.64282C12.8533 8.2388 13 7.76614 13 7C13 5 11 4 11 4C11 4.97127 10.8113 5.75387 10.5073 6.42842M17.9243 14.028C17.5596 11.7798 16 11 16 11C16 11.2663 15.9291 11.5327 15.8061 11.7801M8.72536 8.87786C7.40495 10.3249 6 11.8195 6 15C6 16 7 21 12 21C14.9811 21 16.5403 19.2226 17.3134 17.5753" />
</svg>
);
You can now use the icon component in your React application like any other React component.