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="M7 19L18 19C18 19 21 19 21 16C21 13 18 13 18 13C18 13 18 7 12 7C8 7 7 11 7 11C7 11 3 11 3 15C3 19 7 19 7 19ZM13.1234 7.01036C13.5638 5.27988 15.1324 4 17 4C19.2091 4 21 5.79086 21 8C21 9.86663 19.7214 11.4346 17.9923 11.876" />
</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 {CloudSunIcon} 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 CloudSunIcon = () => (
<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="M7 19L18 19C18 19 21 19 21 16C21 13 18 13 18 13C18 13 18 7 12 7C8 7 7 11 7 11C7 11 3 11 3 15C3 19 7 19 7 19ZM13.1234 7.01036C13.5638 5.27988 15.1324 4 17 4C19.2091 4 21 5.79086 21 8C21 9.86663 19.7214 11.4346 17.9923 11.876" />
</svg>
);
You can now use the icon component in your React application like any other React component.