globe-warning-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
globe-warning-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

5 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the globe warning icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.002 1.999c5.523 0 10.001 4.478 10.001 10.002a10 10 0 0 1-.662 3.585l-.99-1.98a8.55 8.55 0 0 0-.085-3.607h-3.358q.05.52.074 1.055a2.45 2.45 0 0 0-1.479.943Q15.501 10.96 15.4 10H8.605a19 19 0 0 0 .135 5h5.219l-.75 1.5H9.064c.52 1.924 1.345 3.323 2.242 3.812l-.034.069c-.26.52-.32 1.068-.224 1.576C5.971 21.477 2 17.202 2 12.001C2 6.477 6.478 1.999 12.002 1.999M7.51 16.501H4.787a8.53 8.53 0 0 0 4.095 3.41c-.523-.82-.954-1.846-1.27-3.015zM7.095 10H3.737l-.004.017a8.5 8.5 0 0 0-.233 1.984c0 1.056.193 2.067.545 3h3.173a21 21 0 0 1-.123-5m1.788-5.91l-.023.008A8.53 8.53 0 0 0 4.252 8.5H7.3c.313-1.752.86-3.278 1.583-4.41m3.119-.591l-.116.005C10.62 3.62 9.398 5.622 8.83 8.5h6.343c-.566-2.87-1.783-4.869-3.045-4.995zm3.12.59l.106.175c.67 1.112 1.178 2.572 1.475 4.237h3.048a8.53 8.53 0 0 0-4.338-4.29zm1.039 8.741l-3.997 7.998A1.5 1.5 0 0 0 13.507 23h7.994a1.5 1.5 0 0 0 1.343-2.172l-3.997-7.998c-.553-1.107-2.133-1.107-2.686 0m1.843 2.666v3.001a.5.5 0 0 1-1 0v-3.001a.5.5 0 0 1 1 0m-.5 5.503a.5.5 0 1 1 0-1.001a.5.5 0 0 1 0 1"/></svg>

React

import type { SVGProps } from "react";

export function FluentGlobeWarning24Regular(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="M12.002 1.999c5.523 0 10.001 4.478 10.001 10.002a10 10 0 0 1-.662 3.585l-.99-1.98a8.55 8.55 0 0 0-.085-3.607h-3.358q.05.52.074 1.055a2.45 2.45 0 0 0-1.479.943Q15.501 10.96 15.4 10H8.605a19 19 0 0 0 .135 5h5.219l-.75 1.5H9.064c.52 1.924 1.345 3.323 2.242 3.812l-.034.069c-.26.52-.32 1.068-.224 1.576C5.971 21.477 2 17.202 2 12.001C2 6.477 6.478 1.999 12.002 1.999M7.51 16.501H4.787a8.53 8.53 0 0 0 4.095 3.41c-.523-.82-.954-1.846-1.27-3.015zM7.095 10H3.737l-.004.017a8.5 8.5 0 0 0-.233 1.984c0 1.056.193 2.067.545 3h3.173a21 21 0 0 1-.123-5m1.788-5.91l-.023.008A8.53 8.53 0 0 0 4.252 8.5H7.3c.313-1.752.86-3.278 1.583-4.41m3.119-.591l-.116.005C10.62 3.62 9.398 5.622 8.83 8.5h6.343c-.566-2.87-1.783-4.869-3.045-4.995zm3.12.59l.106.175c.67 1.112 1.178 2.572 1.475 4.237h3.048a8.53 8.53 0 0 0-4.338-4.29zm1.039 8.741l-3.997 7.998A1.5 1.5 0 0 0 13.507 23h7.994a1.5 1.5 0 0 0 1.343-2.172l-3.997-7.998c-.553-1.107-2.133-1.107-2.686 0m1.843 2.666v3.001a.5.5 0 0 1-1 0v-3.001a.5.5 0 0 1 1 0m-.5 5.503a.5.5 0 1 1 0-1.001a.5.5 0 0 1 0 1"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12.002 1.999c5.523 0 10.001 4.478 10.001 10.002a10 10 0 0 1-.662 3.585l-.99-1.98a8.55 8.55 0 0 0-.085-3.607h-3.358q.05.52.074 1.055a2.45 2.45 0 0 0-1.479.943Q15.501 10.96 15.4 10H8.605a19 19 0 0 0 .135 5h5.219l-.75 1.5H9.064c.52 1.924 1.345 3.323 2.242 3.812l-.034.069c-.26.52-.32 1.068-.224 1.576C5.971 21.477 2 17.202 2 12.001C2 6.477 6.478 1.999 12.002 1.999M7.51 16.501H4.787a8.53 8.53 0 0 0 4.095 3.41c-.523-.82-.954-1.846-1.27-3.015zM7.095 10H3.737l-.004.017a8.5 8.5 0 0 0-.233 1.984c0 1.056.193 2.067.545 3h3.173a21 21 0 0 1-.123-5m1.788-5.91l-.023.008A8.53 8.53 0 0 0 4.252 8.5H7.3c.313-1.752.86-3.278 1.583-4.41m3.119-.591l-.116.005C10.62 3.62 9.398 5.622 8.83 8.5h6.343c-.566-2.87-1.783-4.869-3.045-4.995zm3.12.59l.106.175c.67 1.112 1.178 2.572 1.475 4.237h3.048a8.53 8.53 0 0 0-4.338-4.29zm1.039 8.741l-3.997 7.998A1.5 1.5 0 0 0 13.507 23h7.994a1.5 1.5 0 0 0 1.343-2.172l-3.997-7.998c-.553-1.107-2.133-1.107-2.686 0m1.843 2.666v3.001a.5.5 0 0 1-1 0v-3.001a.5.5 0 0 1 1 0m-.5 5.503a.5.5 0 1 1 0-1.001a.5.5 0 0 1 0 1"/></svg>
</template>

CSS

.icon-globe-warning-24-regular {
  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%22M12.002%201.999c5.523%200%2010.001%204.478%2010.001%2010.002a10%2010%200%200%201-.662%203.585l-.99-1.98a8.55%208.55%200%200%200-.085-3.607h-3.358q.05.52.074%201.055a2.45%202.45%200%200%200-1.479.943Q15.501%2010.96%2015.4%2010H8.605a19%2019%200%200%200%20.135%205h5.219l-.75%201.5H9.064c.52%201.924%201.345%203.323%202.242%203.812l-.034.069c-.26.52-.32%201.068-.224%201.576C5.971%2021.477%202%2017.202%202%2012.001C2%206.477%206.478%201.999%2012.002%201.999M7.51%2016.501H4.787a8.53%208.53%200%200%200%204.095%203.41c-.523-.82-.954-1.846-1.27-3.015zM7.095%2010H3.737l-.004.017a8.5%208.5%200%200%200-.233%201.984c0%201.056.193%202.067.545%203h3.173a21%2021%200%200%201-.123-5m1.788-5.91l-.023.008A8.53%208.53%200%200%200%204.252%208.5H7.3c.313-1.752.86-3.278%201.583-4.41m3.119-.591l-.116.005C10.62%203.62%209.398%205.622%208.83%208.5h6.343c-.566-2.87-1.783-4.869-3.045-4.995zm3.12.59l.106.175c.67%201.112%201.178%202.572%201.475%204.237h3.048a8.53%208.53%200%200%200-4.338-4.29zm1.039%208.741l-3.997%207.998A1.5%201.5%200%200%200%2013.507%2023h7.994a1.5%201.5%200%200%200%201.343-2.172l-3.997-7.998c-.553-1.107-2.133-1.107-2.686%200m1.843%202.666v3.001a.5.5%200%200%201-1%200v-3.001a.5.5%200%200%201%201%200m-.5%205.503a.5.5%200%201%201%200-1.001a.5.5%200%200%201%200%201%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%22M12.002%201.999c5.523%200%2010.001%204.478%2010.001%2010.002a10%2010%200%200%201-.662%203.585l-.99-1.98a8.55%208.55%200%200%200-.085-3.607h-3.358q.05.52.074%201.055a2.45%202.45%200%200%200-1.479.943Q15.501%2010.96%2015.4%2010H8.605a19%2019%200%200%200%20.135%205h5.219l-.75%201.5H9.064c.52%201.924%201.345%203.323%202.242%203.812l-.034.069c-.26.52-.32%201.068-.224%201.576C5.971%2021.477%202%2017.202%202%2012.001C2%206.477%206.478%201.999%2012.002%201.999M7.51%2016.501H4.787a8.53%208.53%200%200%200%204.095%203.41c-.523-.82-.954-1.846-1.27-3.015zM7.095%2010H3.737l-.004.017a8.5%208.5%200%200%200-.233%201.984c0%201.056.193%202.067.545%203h3.173a21%2021%200%200%201-.123-5m1.788-5.91l-.023.008A8.53%208.53%200%200%200%204.252%208.5H7.3c.313-1.752.86-3.278%201.583-4.41m3.119-.591l-.116.005C10.62%203.62%209.398%205.622%208.83%208.5h6.343c-.566-2.87-1.783-4.869-3.045-4.995zm3.12.59l.106.175c.67%201.112%201.178%202.572%201.475%204.237h3.048a8.53%208.53%200%200%200-4.338-4.29zm1.039%208.741l-3.997%207.998A1.5%201.5%200%200%200%2013.507%2023h7.994a1.5%201.5%200%200%200%201.343-2.172l-3.997-7.998c-.553-1.107-2.133-1.107-2.686%200m1.843%202.666v3.001a.5.5%200%200%201-1%200v-3.001a.5.5%200%200%201%201%200m-.5%205.503a.5.5%200%201%201%200-1.001a.5.5%200%200%201%200%201%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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