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

Name
globe-32-regular
Set
Fluent UI System Icons
Style
32 Regular
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="M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2S2 8.268 2 16s6.268 14 14 14m0-26c1.032 0 2.283.948 3.335 3.227c.373.81.698 1.743.96 2.773h-8.59c.262-1.03.587-1.964.96-2.773C13.717 4.948 14.968 4 16 4m-5.15 2.389c-.49 1.06-.896 2.278-1.201 3.611H5.605a12.04 12.04 0 0 1 6.134-5.222a12 12 0 0 0-.89 1.61M9.278 12A28 28 0 0 0 9 16c0 1.386.097 2.73.279 4H4.683A12 12 0 0 1 4 16c0-1.402.24-2.749.683-4zm.37 10c.305 1.333.711 2.551 1.2 3.611c.263.57.56 1.112.89 1.61A12.04 12.04 0 0 1 5.605 22zm2.057 0h8.588a16 16 0 0 1-.96 2.773C18.284 27.052 17.033 28 16 28s-2.283-.948-3.335-3.227a16 16 0 0 1-.96-2.773m8.993-2H11.3a26 26 0 0 1-.3-4c0-1.407.107-2.752.3-4h9.4c.193 1.248.3 2.593.3 4s-.107 2.752-.3 4m1.652 2h4.044a12.04 12.04 0 0 1-6.134 5.221c.33-.498.627-1.04.89-1.61c.489-1.06.895-2.278 1.2-3.611m4.966-2h-4.596c.182-1.27.279-2.614.279-4s-.097-2.73-.279-4h4.596A12 12 0 0 1 28 16c0 1.402-.24 2.749-.683 4M20.261 4.778A12.04 12.04 0 0 1 26.395 10H22.35c-.305-1.333-.711-2.551-1.2-3.611a12 12 0 0 0-.89-1.61"/></svg>

React

import type { SVGProps } from "react";

export function FluentGlobe32Regular(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="M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2S2 8.268 2 16s6.268 14 14 14m0-26c1.032 0 2.283.948 3.335 3.227c.373.81.698 1.743.96 2.773h-8.59c.262-1.03.587-1.964.96-2.773C13.717 4.948 14.968 4 16 4m-5.15 2.389c-.49 1.06-.896 2.278-1.201 3.611H5.605a12.04 12.04 0 0 1 6.134-5.222a12 12 0 0 0-.89 1.61M9.278 12A28 28 0 0 0 9 16c0 1.386.097 2.73.279 4H4.683A12 12 0 0 1 4 16c0-1.402.24-2.749.683-4zm.37 10c.305 1.333.711 2.551 1.2 3.611c.263.57.56 1.112.89 1.61A12.04 12.04 0 0 1 5.605 22zm2.057 0h8.588a16 16 0 0 1-.96 2.773C18.284 27.052 17.033 28 16 28s-2.283-.948-3.335-3.227a16 16 0 0 1-.96-2.773m8.993-2H11.3a26 26 0 0 1-.3-4c0-1.407.107-2.752.3-4h9.4c.193 1.248.3 2.593.3 4s-.107 2.752-.3 4m1.652 2h4.044a12.04 12.04 0 0 1-6.134 5.221c.33-.498.627-1.04.89-1.61c.489-1.06.895-2.278 1.2-3.611m4.966-2h-4.596c.182-1.27.279-2.614.279-4s-.097-2.73-.279-4h4.596A12 12 0 0 1 28 16c0 1.402-.24 2.749-.683 4M20.261 4.778A12.04 12.04 0 0 1 26.395 10H22.35c-.305-1.333-.711-2.551-1.2-3.611a12 12 0 0 0-.89-1.61"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2S2 8.268 2 16s6.268 14 14 14m0-26c1.032 0 2.283.948 3.335 3.227c.373.81.698 1.743.96 2.773h-8.59c.262-1.03.587-1.964.96-2.773C13.717 4.948 14.968 4 16 4m-5.15 2.389c-.49 1.06-.896 2.278-1.201 3.611H5.605a12.04 12.04 0 0 1 6.134-5.222a12 12 0 0 0-.89 1.61M9.278 12A28 28 0 0 0 9 16c0 1.386.097 2.73.279 4H4.683A12 12 0 0 1 4 16c0-1.402.24-2.749.683-4zm.37 10c.305 1.333.711 2.551 1.2 3.611c.263.57.56 1.112.89 1.61A12.04 12.04 0 0 1 5.605 22zm2.057 0h8.588a16 16 0 0 1-.96 2.773C18.284 27.052 17.033 28 16 28s-2.283-.948-3.335-3.227a16 16 0 0 1-.96-2.773m8.993-2H11.3a26 26 0 0 1-.3-4c0-1.407.107-2.752.3-4h9.4c.193 1.248.3 2.593.3 4s-.107 2.752-.3 4m1.652 2h4.044a12.04 12.04 0 0 1-6.134 5.221c.33-.498.627-1.04.89-1.61c.489-1.06.895-2.278 1.2-3.611m4.966-2h-4.596c.182-1.27.279-2.614.279-4s-.097-2.73-.279-4h4.596A12 12 0 0 1 28 16c0 1.402-.24 2.749-.683 4M20.261 4.778A12.04 12.04 0 0 1 26.395 10H22.35c-.305-1.333-.711-2.551-1.2-3.611a12 12 0 0 0-.89-1.61"/></svg>
</template>

CSS

.icon-globe-32-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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%2030c7.732%200%2014-6.268%2014-14S23.732%202%2016%202S2%208.268%202%2016s6.268%2014%2014%2014m0-26c1.032%200%202.283.948%203.335%203.227c.373.81.698%201.743.96%202.773h-8.59c.262-1.03.587-1.964.96-2.773C13.717%204.948%2014.968%204%2016%204m-5.15%202.389c-.49%201.06-.896%202.278-1.201%203.611H5.605a12.04%2012.04%200%200%201%206.134-5.222a12%2012%200%200%200-.89%201.61M9.278%2012A28%2028%200%200%200%209%2016c0%201.386.097%202.73.279%204H4.683A12%2012%200%200%201%204%2016c0-1.402.24-2.749.683-4zm.37%2010c.305%201.333.711%202.551%201.2%203.611c.263.57.56%201.112.89%201.61A12.04%2012.04%200%200%201%205.605%2022zm2.057%200h8.588a16%2016%200%200%201-.96%202.773C18.284%2027.052%2017.033%2028%2016%2028s-2.283-.948-3.335-3.227a16%2016%200%200%201-.96-2.773m8.993-2H11.3a26%2026%200%200%201-.3-4c0-1.407.107-2.752.3-4h9.4c.193%201.248.3%202.593.3%204s-.107%202.752-.3%204m1.652%202h4.044a12.04%2012.04%200%200%201-6.134%205.221c.33-.498.627-1.04.89-1.61c.489-1.06.895-2.278%201.2-3.611m4.966-2h-4.596c.182-1.27.279-2.614.279-4s-.097-2.73-.279-4h4.596A12%2012%200%200%201%2028%2016c0%201.402-.24%202.749-.683%204M20.261%204.778A12.04%2012.04%200%200%201%2026.395%2010H22.35c-.305-1.333-.711-2.551-1.2-3.611a12%2012%200%200%200-.89-1.61%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%22M16%2030c7.732%200%2014-6.268%2014-14S23.732%202%2016%202S2%208.268%202%2016s6.268%2014%2014%2014m0-26c1.032%200%202.283.948%203.335%203.227c.373.81.698%201.743.96%202.773h-8.59c.262-1.03.587-1.964.96-2.773C13.717%204.948%2014.968%204%2016%204m-5.15%202.389c-.49%201.06-.896%202.278-1.201%203.611H5.605a12.04%2012.04%200%200%201%206.134-5.222a12%2012%200%200%200-.89%201.61M9.278%2012A28%2028%200%200%200%209%2016c0%201.386.097%202.73.279%204H4.683A12%2012%200%200%201%204%2016c0-1.402.24-2.749.683-4zm.37%2010c.305%201.333.711%202.551%201.2%203.611c.263.57.56%201.112.89%201.61A12.04%2012.04%200%200%201%205.605%2022zm2.057%200h8.588a16%2016%200%200%201-.96%202.773C18.284%2027.052%2017.033%2028%2016%2028s-2.283-.948-3.335-3.227a16%2016%200%200%201-.96-2.773m8.993-2H11.3a26%2026%200%200%201-.3-4c0-1.407.107-2.752.3-4h9.4c.193%201.248.3%202.593.3%204s-.107%202.752-.3%204m1.652%202h4.044a12.04%2012.04%200%200%201-6.134%205.221c.33-.498.627-1.04.89-1.61c.489-1.06.895-2.278%201.2-3.611m4.966-2h-4.596c.182-1.27.279-2.614.279-4s-.097-2.73-.279-4h4.596A12%2012%200%200%201%2028%2016c0%201.402-.24%202.749-.683%204M20.261%204.778A12.04%2012.04%200%200%201%2026.395%2010H22.35c-.305-1.333-.711-2.551-1.2-3.611a12%2012%200%200%200-.89-1.61%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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