cloud-sun
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG
Using as SVG
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>
Using with React
Install
@josemi-icons/react
and import the icon component in your React application:
import {CloudSunIcon} from "@josemi-icons/react";
const MyComponent = () => {
return (
<CloudSunIcon />
);
};
Using with CSS
Install
@josemi-icons/css
and include the icon as a CSS class:
<i class="ji-cloud-sun"></i>