weather-haze-24-filled from Fluent UI System Icons by Microsoft Corporation · 24 Filled · MIT Free for personal and commercial use.

Name
weather-haze-24-filled
Set
Fluent UI System Icons
Style
24 Filled
Viewbox
24×24
License
MIT

5 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the weather haze icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M6.842 13.984a5.7 5.7 0 0 1 1.713.021c1.293.21 2.522.838 3.823 1.597c2.357 1.375 4.946 1.102 6.436.037a.75.75 0 1 1 .872 1.221c-2.01 1.436-5.24 1.685-8.064.038c-1.29-.753-2.31-1.25-3.307-1.412c-.957-.156-1.955-.01-3.206.672a.75.75 0 1 1-.718-1.317c.861-.47 1.668-.747 2.45-.857m2.798-2.707q-.538-.181-1.086-.273a5.7 5.7 0 0 0-1.994.026c-.695.132-1.411.397-2.17.81a.75.75 0 0 0 .719 1.318c1.25-.683 2.248-.828 3.205-.673q.415.069.846.213c.742.247 1.531.657 2.46 1.199l.182.103c2.78 1.533 5.916 1.265 7.883-.14a.75.75 0 0 0-.871-1.221c-.41.292-.9.524-1.448.68c-1.08.307-2.378.311-3.678-.123a7 7 0 0 1-1.31-.595c-.934-.544-1.83-1.02-2.738-1.324m7.885.723q0 .105-.004.21c-1.209.488-2.964.505-4.64-.473c-1.31-.764-2.677-1.478-4.167-1.72a6.7 6.7 0 0 0-1.856-.044A5.527 5.527 0 0 1 17.525 12m-5.403 10a.8.8 0 0 1-.252 0zM5.974 4.94l-.084-.072a.75.75 0 0 0-.977 1.133l1.06 1.061l.085.073A.75.75 0 0 0 7.034 6zm13.177.977a.75.75 0 0 0-1.133-.976L16.957 6l-.073.085a.75.75 0 0 0 1.134.976l1.06-1.06zm-6.408-3.28a.75.75 0 0 0-1.493.102v1.5l.007.102a.75.75 0 0 0 1.493-.102v-1.5zM5.11 19.158c1.251-.682 2.249-.828 3.206-.672c.996.162 2.018.66 3.307 1.412c2.825 1.647 6.055 1.398 8.064-.038a.75.75 0 1 0-.872-1.22c-1.49 1.064-4.079 1.337-6.436-.038c-1.301-.76-2.53-1.387-3.823-1.597c-1.333-.216-2.665.019-4.164.837a.75.75 0 0 0 .718 1.316"/></svg>

React

import type { SVGProps } from "react";

export function FluentWeatherHaze24Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M6.842 13.984a5.7 5.7 0 0 1 1.713.021c1.293.21 2.522.838 3.823 1.597c2.357 1.375 4.946 1.102 6.436.037a.75.75 0 1 1 .872 1.221c-2.01 1.436-5.24 1.685-8.064.038c-1.29-.753-2.31-1.25-3.307-1.412c-.957-.156-1.955-.01-3.206.672a.75.75 0 1 1-.718-1.317c.861-.47 1.668-.747 2.45-.857m2.798-2.707q-.538-.181-1.086-.273a5.7 5.7 0 0 0-1.994.026c-.695.132-1.411.397-2.17.81a.75.75 0 0 0 .719 1.318c1.25-.683 2.248-.828 3.205-.673q.415.069.846.213c.742.247 1.531.657 2.46 1.199l.182.103c2.78 1.533 5.916 1.265 7.883-.14a.75.75 0 0 0-.871-1.221c-.41.292-.9.524-1.448.68c-1.08.307-2.378.311-3.678-.123a7 7 0 0 1-1.31-.595c-.934-.544-1.83-1.02-2.738-1.324m7.885.723q0 .105-.004.21c-1.209.488-2.964.505-4.64-.473c-1.31-.764-2.677-1.478-4.167-1.72a6.7 6.7 0 0 0-1.856-.044A5.527 5.527 0 0 1 17.525 12m-5.403 10a.8.8 0 0 1-.252 0zM5.974 4.94l-.084-.072a.75.75 0 0 0-.977 1.133l1.06 1.061l.085.073A.75.75 0 0 0 7.034 6zm13.177.977a.75.75 0 0 0-1.133-.976L16.957 6l-.073.085a.75.75 0 0 0 1.134.976l1.06-1.06zm-6.408-3.28a.75.75 0 0 0-1.493.102v1.5l.007.102a.75.75 0 0 0 1.493-.102v-1.5zM5.11 19.158c1.251-.682 2.249-.828 3.206-.672c.996.162 2.018.66 3.307 1.412c2.825 1.647 6.055 1.398 8.064-.038a.75.75 0 1 0-.872-1.22c-1.49 1.064-4.079 1.337-6.436-.038c-1.301-.76-2.53-1.387-3.823-1.597c-1.333-.216-2.665.019-4.164.837a.75.75 0 0 0 .718 1.316"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M6.842 13.984a5.7 5.7 0 0 1 1.713.021c1.293.21 2.522.838 3.823 1.597c2.357 1.375 4.946 1.102 6.436.037a.75.75 0 1 1 .872 1.221c-2.01 1.436-5.24 1.685-8.064.038c-1.29-.753-2.31-1.25-3.307-1.412c-.957-.156-1.955-.01-3.206.672a.75.75 0 1 1-.718-1.317c.861-.47 1.668-.747 2.45-.857m2.798-2.707q-.538-.181-1.086-.273a5.7 5.7 0 0 0-1.994.026c-.695.132-1.411.397-2.17.81a.75.75 0 0 0 .719 1.318c1.25-.683 2.248-.828 3.205-.673q.415.069.846.213c.742.247 1.531.657 2.46 1.199l.182.103c2.78 1.533 5.916 1.265 7.883-.14a.75.75 0 0 0-.871-1.221c-.41.292-.9.524-1.448.68c-1.08.307-2.378.311-3.678-.123a7 7 0 0 1-1.31-.595c-.934-.544-1.83-1.02-2.738-1.324m7.885.723q0 .105-.004.21c-1.209.488-2.964.505-4.64-.473c-1.31-.764-2.677-1.478-4.167-1.72a6.7 6.7 0 0 0-1.856-.044A5.527 5.527 0 0 1 17.525 12m-5.403 10a.8.8 0 0 1-.252 0zM5.974 4.94l-.084-.072a.75.75 0 0 0-.977 1.133l1.06 1.061l.085.073A.75.75 0 0 0 7.034 6zm13.177.977a.75.75 0 0 0-1.133-.976L16.957 6l-.073.085a.75.75 0 0 0 1.134.976l1.06-1.06zm-6.408-3.28a.75.75 0 0 0-1.493.102v1.5l.007.102a.75.75 0 0 0 1.493-.102v-1.5zM5.11 19.158c1.251-.682 2.249-.828 3.206-.672c.996.162 2.018.66 3.307 1.412c2.825 1.647 6.055 1.398 8.064-.038a.75.75 0 1 0-.872-1.22c-1.49 1.064-4.079 1.337-6.436-.038c-1.301-.76-2.53-1.387-3.823-1.597c-1.333-.216-2.665.019-4.164.837a.75.75 0 0 0 .718 1.316"/></svg>
</template>

CSS

.icon-weather-haze-24-filled {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.842%2013.984a5.7%205.7%200%200%201%201.713.021c1.293.21%202.522.838%203.823%201.597c2.357%201.375%204.946%201.102%206.436.037a.75.75%200%201%201%20.872%201.221c-2.01%201.436-5.24%201.685-8.064.038c-1.29-.753-2.31-1.25-3.307-1.412c-.957-.156-1.955-.01-3.206.672a.75.75%200%201%201-.718-1.317c.861-.47%201.668-.747%202.45-.857m2.798-2.707q-.538-.181-1.086-.273a5.7%205.7%200%200%200-1.994.026c-.695.132-1.411.397-2.17.81a.75.75%200%200%200%20.719%201.318c1.25-.683%202.248-.828%203.205-.673q.415.069.846.213c.742.247%201.531.657%202.46%201.199l.182.103c2.78%201.533%205.916%201.265%207.883-.14a.75.75%200%200%200-.871-1.221c-.41.292-.9.524-1.448.68c-1.08.307-2.378.311-3.678-.123a7%207%200%200%201-1.31-.595c-.934-.544-1.83-1.02-2.738-1.324m7.885.723q0%20.105-.004.21c-1.209.488-2.964.505-4.64-.473c-1.31-.764-2.677-1.478-4.167-1.72a6.7%206.7%200%200%200-1.856-.044A5.527%205.527%200%200%201%2017.525%2012m-5.403%2010a.8.8%200%200%201-.252%200zM5.974%204.94l-.084-.072a.75.75%200%200%200-.977%201.133l1.06%201.061l.085.073A.75.75%200%200%200%207.034%206zm13.177.977a.75.75%200%200%200-1.133-.976L16.957%206l-.073.085a.75.75%200%200%200%201.134.976l1.06-1.06zm-6.408-3.28a.75.75%200%200%200-1.493.102v1.5l.007.102a.75.75%200%200%200%201.493-.102v-1.5zM5.11%2019.158c1.251-.682%202.249-.828%203.206-.672c.996.162%202.018.66%203.307%201.412c2.825%201.647%206.055%201.398%208.064-.038a.75.75%200%201%200-.872-1.22c-1.49%201.064-4.079%201.337-6.436-.038c-1.301-.76-2.53-1.387-3.823-1.597c-1.333-.216-2.665.019-4.164.837a.75.75%200%200%200%20.718%201.316%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.842%2013.984a5.7%205.7%200%200%201%201.713.021c1.293.21%202.522.838%203.823%201.597c2.357%201.375%204.946%201.102%206.436.037a.75.75%200%201%201%20.872%201.221c-2.01%201.436-5.24%201.685-8.064.038c-1.29-.753-2.31-1.25-3.307-1.412c-.957-.156-1.955-.01-3.206.672a.75.75%200%201%201-.718-1.317c.861-.47%201.668-.747%202.45-.857m2.798-2.707q-.538-.181-1.086-.273a5.7%205.7%200%200%200-1.994.026c-.695.132-1.411.397-2.17.81a.75.75%200%200%200%20.719%201.318c1.25-.683%202.248-.828%203.205-.673q.415.069.846.213c.742.247%201.531.657%202.46%201.199l.182.103c2.78%201.533%205.916%201.265%207.883-.14a.75.75%200%200%200-.871-1.221c-.41.292-.9.524-1.448.68c-1.08.307-2.378.311-3.678-.123a7%207%200%200%201-1.31-.595c-.934-.544-1.83-1.02-2.738-1.324m7.885.723q0%20.105-.004.21c-1.209.488-2.964.505-4.64-.473c-1.31-.764-2.677-1.478-4.167-1.72a6.7%206.7%200%200%200-1.856-.044A5.527%205.527%200%200%201%2017.525%2012m-5.403%2010a.8.8%200%200%201-.252%200zM5.974%204.94l-.084-.072a.75.75%200%200%200-.977%201.133l1.06%201.061l.085.073A.75.75%200%200%200%207.034%206zm13.177.977a.75.75%200%200%200-1.133-.976L16.957%206l-.073.085a.75.75%200%200%200%201.134.976l1.06-1.06zm-6.408-3.28a.75.75%200%200%200-1.493.102v1.5l.007.102a.75.75%200%200%200%201.493-.102v-1.5zM5.11%2019.158c1.251-.682%202.249-.828%203.206-.672c.996.162%202.018.66%203.307%201.412c2.825%201.647%206.055%201.398%208.064-.038a.75.75%200%201%200-.872-1.22c-1.49%201.064-4.079%201.337-6.436-.038c-1.301-.76-2.53-1.387-3.823-1.597c-1.333-.216-2.665.019-4.164.837a.75.75%200%200%200%20.718%201.316%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/weather-haze-24-filled.svg?color=%231a73e8&size=48