Weather Fog icon

Used to represent current weather. The Weather Fog icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Use the Weather Fog icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { WeatherFog24Regular, WeatherFog24Filled } from "@fluentui/react-icons";

export function Example() {
  return <WeatherFog24Regular aria-label="Weather Fog" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_weather_fog_24_regular.svg" width="24" height="24" alt="Weather Fog">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.74482 19.5001H16.2462C16.66 19.5001 16.9955 19.8358 16.9955 20.2501C16.9955 20.6298 16.7136 20.9436 16.3478 20.9932L16.2462 21.0001H7.74482C7.33097 21.0001 6.99549 20.6643 6.99549 20.2501C6.99549 19.8704 7.27739 19.5566 7.64314 19.5069L7.74482 19.5001H16.2462H7.74482ZM4.74993 16.5193H19.2499C19.6641 16.5193 19.9999 16.8551 19.9999 17.2693C19.9999 17.649 19.7178 17.9628 19.3517 18.0124L19.2499 18.0193H4.74993C4.33572 18.0193 3.99993 17.6835 3.99993 17.2693C3.99993 16.8896 4.28209 16.5758 4.64816 16.5261L4.74993 16.5193ZM11.9999 3.00488C15.1685 3.00488 16.9659 5.10217 17.2273 7.63501L17.3073 7.63501C19.3464 7.63501 20.9994 9.28373 20.9994 11.3175C20.9994 13.3513 19.3464 15.0001 17.3073 15.0001H6.69257C4.65349 15.0001 3.00049 13.3513 3.00049 11.3175C3.00049 9.28373 4.65349 7.63501 6.69259 7.63501L6.77253 7.63501C7.03547 5.08553 8.8314 3.00488 11.9999 3.00488ZM11.9999 4.50247C9.92861 4.50247 8.12322 6.13571 8.12322 8.39169C8.12322 8.74915 7.80427 9.02964 7.43906 9.02963L6.74851 9.0296C5.48751 9.0296 4.46528 10.0309 4.46528 11.266C4.46528 12.5012 5.48751 13.5025 6.74851 13.5025H17.2514C18.5124 13.5025 19.5346 12.5012 19.5346 11.266C19.5346 10.0309 18.5124 9.0296 17.2514 9.0296L16.5608 9.02963C16.1956 9.02964 15.8766 8.74915 15.8766 8.39169C15.8766 6.10677 14.0713 4.50247 11.9999 4.50247Z" fill="currentColor"/></svg>

Use it from the SVG package

Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/weather_fog_24_regular.svg";

Details

NameWeather Fog
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_weather_fog_24_regular.svg
Filled fileic_fluent_weather_fog_24_filled.svg
React componentsWeatherFog24Regular, WeatherFog24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

dailyskysnowwindcloudsunrainmoonlightninghaze

Related icons