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

Name
globe-32-filled
Set
Fluent UI System Icons
Style
32 Filled
Viewbox
32×32
License
MIT

14 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the globe icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M11 16c0-1.393.078-2.734.222-4h9.556c.144 1.266.222 2.607.222 4s-.078 2.734-.222 4h-9.556A36 36 0 0 1 11 16m-1.79 4A38 38 0 0 1 9 16c0-1.379.073-2.72.21-4H2.58A14 14 0 0 0 2 16c0 1.39.203 2.733.58 4zm-5.863 2h6.138c.314 1.86.771 3.547 1.344 4.978c.369.922.793 1.758 1.272 2.472A14.04 14.04 0 0 1 3.347 22m8.168 0h8.97c-.29 1.6-.69 3.032-1.17 4.235c-.516 1.288-1.104 2.262-1.706 2.9c-.6.634-1.144.865-1.609.865s-1.009-.231-1.609-.866c-.602-.637-1.19-1.611-1.705-2.899c-.481-1.203-.881-2.636-1.171-4.235m11 0c-.314 1.86-.771 3.547-1.344 4.978c-.369.922-.793 1.758-1.272 2.472A14.04 14.04 0 0 0 28.653 22zm6.905-2c.377-1.267.58-2.61.58-4s-.203-2.733-.58-4h-6.63c.137 1.28.21 2.621.21 4s-.073 2.72-.21 4zM19.314 5.765c.481 1.203.881 2.636 1.171 4.235h-8.97c.29-1.6.69-3.032 1.17-4.235c.516-1.288 1.104-2.263 1.706-2.9c.598-.631 1.14-.863 1.604-.865h.008c.464 0 1.007.233 1.606.866c.602.636 1.19 1.611 1.705 2.899M22.515 10h6.138a14.04 14.04 0 0 0-8.754-7.45c.479.714.903 1.55 1.272 2.472c.573 1.431 1.03 3.118 1.344 4.978M3.347 10h6.138c.314-1.86.771-3.547 1.344-4.978c.369-.922.793-1.758 1.272-2.472A14.04 14.04 0 0 0 3.347 10"/></svg>

React

import type { SVGProps } from "react";

export function FluentGlobe32Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M11 16c0-1.393.078-2.734.222-4h9.556c.144 1.266.222 2.607.222 4s-.078 2.734-.222 4h-9.556A36 36 0 0 1 11 16m-1.79 4A38 38 0 0 1 9 16c0-1.379.073-2.72.21-4H2.58A14 14 0 0 0 2 16c0 1.39.203 2.733.58 4zm-5.863 2h6.138c.314 1.86.771 3.547 1.344 4.978c.369.922.793 1.758 1.272 2.472A14.04 14.04 0 0 1 3.347 22m8.168 0h8.97c-.29 1.6-.69 3.032-1.17 4.235c-.516 1.288-1.104 2.262-1.706 2.9c-.6.634-1.144.865-1.609.865s-1.009-.231-1.609-.866c-.602-.637-1.19-1.611-1.705-2.899c-.481-1.203-.881-2.636-1.171-4.235m11 0c-.314 1.86-.771 3.547-1.344 4.978c-.369.922-.793 1.758-1.272 2.472A14.04 14.04 0 0 0 28.653 22zm6.905-2c.377-1.267.58-2.61.58-4s-.203-2.733-.58-4h-6.63c.137 1.28.21 2.621.21 4s-.073 2.72-.21 4zM19.314 5.765c.481 1.203.881 2.636 1.171 4.235h-8.97c.29-1.6.69-3.032 1.17-4.235c.516-1.288 1.104-2.263 1.706-2.9c.598-.631 1.14-.863 1.604-.865h.008c.464 0 1.007.233 1.606.866c.602.636 1.19 1.611 1.705 2.899M22.515 10h6.138a14.04 14.04 0 0 0-8.754-7.45c.479.714.903 1.55 1.272 2.472c.573 1.431 1.03 3.118 1.344 4.978M3.347 10h6.138c.314-1.86.771-3.547 1.344-4.978c.369-.922.793-1.758 1.272-2.472A14.04 14.04 0 0 0 3.347 10"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M11 16c0-1.393.078-2.734.222-4h9.556c.144 1.266.222 2.607.222 4s-.078 2.734-.222 4h-9.556A36 36 0 0 1 11 16m-1.79 4A38 38 0 0 1 9 16c0-1.379.073-2.72.21-4H2.58A14 14 0 0 0 2 16c0 1.39.203 2.733.58 4zm-5.863 2h6.138c.314 1.86.771 3.547 1.344 4.978c.369.922.793 1.758 1.272 2.472A14.04 14.04 0 0 1 3.347 22m8.168 0h8.97c-.29 1.6-.69 3.032-1.17 4.235c-.516 1.288-1.104 2.262-1.706 2.9c-.6.634-1.144.865-1.609.865s-1.009-.231-1.609-.866c-.602-.637-1.19-1.611-1.705-2.899c-.481-1.203-.881-2.636-1.171-4.235m11 0c-.314 1.86-.771 3.547-1.344 4.978c-.369.922-.793 1.758-1.272 2.472A14.04 14.04 0 0 0 28.653 22zm6.905-2c.377-1.267.58-2.61.58-4s-.203-2.733-.58-4h-6.63c.137 1.28.21 2.621.21 4s-.073 2.72-.21 4zM19.314 5.765c.481 1.203.881 2.636 1.171 4.235h-8.97c.29-1.6.69-3.032 1.17-4.235c.516-1.288 1.104-2.263 1.706-2.9c.598-.631 1.14-.863 1.604-.865h.008c.464 0 1.007.233 1.606.866c.602.636 1.19 1.611 1.705 2.899M22.515 10h6.138a14.04 14.04 0 0 0-8.754-7.45c.479.714.903 1.55 1.272 2.472c.573 1.431 1.03 3.118 1.344 4.978M3.347 10h6.138c.314-1.86.771-3.547 1.344-4.978c.369-.922.793-1.758 1.272-2.472A14.04 14.04 0 0 0 3.347 10"/></svg>
</template>

CSS

.icon-globe-32-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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M11%2016c0-1.393.078-2.734.222-4h9.556c.144%201.266.222%202.607.222%204s-.078%202.734-.222%204h-9.556A36%2036%200%200%201%2011%2016m-1.79%204A38%2038%200%200%201%209%2016c0-1.379.073-2.72.21-4H2.58A14%2014%200%200%200%202%2016c0%201.39.203%202.733.58%204zm-5.863%202h6.138c.314%201.86.771%203.547%201.344%204.978c.369.922.793%201.758%201.272%202.472A14.04%2014.04%200%200%201%203.347%2022m8.168%200h8.97c-.29%201.6-.69%203.032-1.17%204.235c-.516%201.288-1.104%202.262-1.706%202.9c-.6.634-1.144.865-1.609.865s-1.009-.231-1.609-.866c-.602-.637-1.19-1.611-1.705-2.899c-.481-1.203-.881-2.636-1.171-4.235m11%200c-.314%201.86-.771%203.547-1.344%204.978c-.369.922-.793%201.758-1.272%202.472A14.04%2014.04%200%200%200%2028.653%2022zm6.905-2c.377-1.267.58-2.61.58-4s-.203-2.733-.58-4h-6.63c.137%201.28.21%202.621.21%204s-.073%202.72-.21%204zM19.314%205.765c.481%201.203.881%202.636%201.171%204.235h-8.97c.29-1.6.69-3.032%201.17-4.235c.516-1.288%201.104-2.263%201.706-2.9c.598-.631%201.14-.863%201.604-.865h.008c.464%200%201.007.233%201.606.866c.602.636%201.19%201.611%201.705%202.899M22.515%2010h6.138a14.04%2014.04%200%200%200-8.754-7.45c.479.714.903%201.55%201.272%202.472c.573%201.431%201.03%203.118%201.344%204.978M3.347%2010h6.138c.314-1.86.771-3.547%201.344-4.978c.369-.922.793-1.758%201.272-2.472A14.04%2014.04%200%200%200%203.347%2010%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M11%2016c0-1.393.078-2.734.222-4h9.556c.144%201.266.222%202.607.222%204s-.078%202.734-.222%204h-9.556A36%2036%200%200%201%2011%2016m-1.79%204A38%2038%200%200%201%209%2016c0-1.379.073-2.72.21-4H2.58A14%2014%200%200%200%202%2016c0%201.39.203%202.733.58%204zm-5.863%202h6.138c.314%201.86.771%203.547%201.344%204.978c.369.922.793%201.758%201.272%202.472A14.04%2014.04%200%200%201%203.347%2022m8.168%200h8.97c-.29%201.6-.69%203.032-1.17%204.235c-.516%201.288-1.104%202.262-1.706%202.9c-.6.634-1.144.865-1.609.865s-1.009-.231-1.609-.866c-.602-.637-1.19-1.611-1.705-2.899c-.481-1.203-.881-2.636-1.171-4.235m11%200c-.314%201.86-.771%203.547-1.344%204.978c-.369.922-.793%201.758-1.272%202.472A14.04%2014.04%200%200%200%2028.653%2022zm6.905-2c.377-1.267.58-2.61.58-4s-.203-2.733-.58-4h-6.63c.137%201.28.21%202.621.21%204s-.073%202.72-.21%204zM19.314%205.765c.481%201.203.881%202.636%201.171%204.235h-8.97c.29-1.6.69-3.032%201.17-4.235c.516-1.288%201.104-2.263%201.706-2.9c.598-.631%201.14-.863%201.604-.865h.008c.464%200%201.007.233%201.606.866c.602.636%201.19%201.611%201.705%202.899M22.515%2010h6.138a14.04%2014.04%200%200%200-8.754-7.45c.479.714.903%201.55%201.272%202.472c.573%201.431%201.03%203.118%201.344%204.978M3.347%2010h6.138c.314-1.86.771-3.547%201.344-4.978c.369-.922.793-1.758%201.272-2.472A14.04%2014.04%200%200%200%203.347%2010%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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