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

Name
earth-32-regular
Set
Fluent UI System Icons
Style
32 Regular
Viewbox
32×32
License
MIT

9 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the earth icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 2a14 14 0 1 0 0 28a14 14 0 0 0 0-28m-2.51 2.27c.16.31.32.6.49.9c.76 1.36 1.43 2.53 1 4.1c-.17.68-1 1-2.14 1.4a4.3 4.3 0 0 0-2.14 1.23a4.31 4.31 0 0 0-.43 4c.19.74.3 1.2.1 1.5s-.15.18-.68.25a3.94 3.94 0 0 0-3 1.7a5.3 5.3 0 0 0-.93 2.84A11.85 11.85 0 0 1 4 16a12 12 0 0 1 9.49-11.73M7.91 24.84c-.16-1.13-.41-3.17.39-4.24a2 2 0 0 1 1.7-.92a2.62 2.62 0 0 0 2-1.13a3.64 3.64 0 0 0 .16-3.11c-.26-1-.4-1.67.1-2.34a4.5 4.5 0 0 1 1.23-.53c1.27-.43 3-1 3.44-2.84c.56-2.33-.4-4-1.25-5.55L15.63 4H16c2.263 0 4.48.646 6.39 1.86a21.7 21.7 0 0 1-3.76 4.4c-1.38 1.25-.37 2.69.3 3.64A4 4 0 0 1 20 16.83a1.68 1.68 0 0 0 .42 1.59a2.13 2.13 0 0 0 2.08.17q.36-.102.73-.15c.11.38-.1.69-1 1.52s-2.09 1.95-1.73 3.74a3.75 3.75 0 0 0 1.9 2.42a11.92 11.92 0 0 1-14.49-1.28m16.2 0l-.39-.25c-.7-.42-1.13-.72-1.24-1.27s.25-1.05 1.14-1.88s2.13-2 1.47-3.77c-.61-1.61-2.29-1.2-3.05-1a6.18 6.18 0 0 0-1.47-3.9a3.8 3.8 0 0 1-.6-1a23.3 23.3 0 0 0 4-4.67a11.95 11.95 0 0 1 .12 17.75z"/></svg>

React

import type { SVGProps } from "react";

export function FluentEarth32Regular(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 2a14 14 0 1 0 0 28a14 14 0 0 0 0-28m-2.51 2.27c.16.31.32.6.49.9c.76 1.36 1.43 2.53 1 4.1c-.17.68-1 1-2.14 1.4a4.3 4.3 0 0 0-2.14 1.23a4.31 4.31 0 0 0-.43 4c.19.74.3 1.2.1 1.5s-.15.18-.68.25a3.94 3.94 0 0 0-3 1.7a5.3 5.3 0 0 0-.93 2.84A11.85 11.85 0 0 1 4 16a12 12 0 0 1 9.49-11.73M7.91 24.84c-.16-1.13-.41-3.17.39-4.24a2 2 0 0 1 1.7-.92a2.62 2.62 0 0 0 2-1.13a3.64 3.64 0 0 0 .16-3.11c-.26-1-.4-1.67.1-2.34a4.5 4.5 0 0 1 1.23-.53c1.27-.43 3-1 3.44-2.84c.56-2.33-.4-4-1.25-5.55L15.63 4H16c2.263 0 4.48.646 6.39 1.86a21.7 21.7 0 0 1-3.76 4.4c-1.38 1.25-.37 2.69.3 3.64A4 4 0 0 1 20 16.83a1.68 1.68 0 0 0 .42 1.59a2.13 2.13 0 0 0 2.08.17q.36-.102.73-.15c.11.38-.1.69-1 1.52s-2.09 1.95-1.73 3.74a3.75 3.75 0 0 0 1.9 2.42a11.92 11.92 0 0 1-14.49-1.28m16.2 0l-.39-.25c-.7-.42-1.13-.72-1.24-1.27s.25-1.05 1.14-1.88s2.13-2 1.47-3.77c-.61-1.61-2.29-1.2-3.05-1a6.18 6.18 0 0 0-1.47-3.9a3.8 3.8 0 0 1-.6-1a23.3 23.3 0 0 0 4-4.67a11.95 11.95 0 0 1 .12 17.75z"/></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 2a14 14 0 1 0 0 28a14 14 0 0 0 0-28m-2.51 2.27c.16.31.32.6.49.9c.76 1.36 1.43 2.53 1 4.1c-.17.68-1 1-2.14 1.4a4.3 4.3 0 0 0-2.14 1.23a4.31 4.31 0 0 0-.43 4c.19.74.3 1.2.1 1.5s-.15.18-.68.25a3.94 3.94 0 0 0-3 1.7a5.3 5.3 0 0 0-.93 2.84A11.85 11.85 0 0 1 4 16a12 12 0 0 1 9.49-11.73M7.91 24.84c-.16-1.13-.41-3.17.39-4.24a2 2 0 0 1 1.7-.92a2.62 2.62 0 0 0 2-1.13a3.64 3.64 0 0 0 .16-3.11c-.26-1-.4-1.67.1-2.34a4.5 4.5 0 0 1 1.23-.53c1.27-.43 3-1 3.44-2.84c.56-2.33-.4-4-1.25-5.55L15.63 4H16c2.263 0 4.48.646 6.39 1.86a21.7 21.7 0 0 1-3.76 4.4c-1.38 1.25-.37 2.69.3 3.64A4 4 0 0 1 20 16.83a1.68 1.68 0 0 0 .42 1.59a2.13 2.13 0 0 0 2.08.17q.36-.102.73-.15c.11.38-.1.69-1 1.52s-2.09 1.95-1.73 3.74a3.75 3.75 0 0 0 1.9 2.42a11.92 11.92 0 0 1-14.49-1.28m16.2 0l-.39-.25c-.7-.42-1.13-.72-1.24-1.27s.25-1.05 1.14-1.88s2.13-2 1.47-3.77c-.61-1.61-2.29-1.2-3.05-1a6.18 6.18 0 0 0-1.47-3.9a3.8 3.8 0 0 1-.6-1a23.3 23.3 0 0 0 4-4.67a11.95 11.95 0 0 1 .12 17.75z"/></svg>
</template>

CSS

.icon-earth-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%202a14%2014%200%201%200%200%2028a14%2014%200%200%200%200-28m-2.51%202.27c.16.31.32.6.49.9c.76%201.36%201.43%202.53%201%204.1c-.17.68-1%201-2.14%201.4a4.3%204.3%200%200%200-2.14%201.23a4.31%204.31%200%200%200-.43%204c.19.74.3%201.2.1%201.5s-.15.18-.68.25a3.94%203.94%200%200%200-3%201.7a5.3%205.3%200%200%200-.93%202.84A11.85%2011.85%200%200%201%204%2016a12%2012%200%200%201%209.49-11.73M7.91%2024.84c-.16-1.13-.41-3.17.39-4.24a2%202%200%200%201%201.7-.92a2.62%202.62%200%200%200%202-1.13a3.64%203.64%200%200%200%20.16-3.11c-.26-1-.4-1.67.1-2.34a4.5%204.5%200%200%201%201.23-.53c1.27-.43%203-1%203.44-2.84c.56-2.33-.4-4-1.25-5.55L15.63%204H16c2.263%200%204.48.646%206.39%201.86a21.7%2021.7%200%200%201-3.76%204.4c-1.38%201.25-.37%202.69.3%203.64A4%204%200%200%201%2020%2016.83a1.68%201.68%200%200%200%20.42%201.59a2.13%202.13%200%200%200%202.08.17q.36-.102.73-.15c.11.38-.1.69-1%201.52s-2.09%201.95-1.73%203.74a3.75%203.75%200%200%200%201.9%202.42a11.92%2011.92%200%200%201-14.49-1.28m16.2%200l-.39-.25c-.7-.42-1.13-.72-1.24-1.27s.25-1.05%201.14-1.88s2.13-2%201.47-3.77c-.61-1.61-2.29-1.2-3.05-1a6.18%206.18%200%200%200-1.47-3.9a3.8%203.8%200%200%201-.6-1a23.3%2023.3%200%200%200%204-4.67a11.95%2011.95%200%200%201%20.12%2017.75z%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%202a14%2014%200%201%200%200%2028a14%2014%200%200%200%200-28m-2.51%202.27c.16.31.32.6.49.9c.76%201.36%201.43%202.53%201%204.1c-.17.68-1%201-2.14%201.4a4.3%204.3%200%200%200-2.14%201.23a4.31%204.31%200%200%200-.43%204c.19.74.3%201.2.1%201.5s-.15.18-.68.25a3.94%203.94%200%200%200-3%201.7a5.3%205.3%200%200%200-.93%202.84A11.85%2011.85%200%200%201%204%2016a12%2012%200%200%201%209.49-11.73M7.91%2024.84c-.16-1.13-.41-3.17.39-4.24a2%202%200%200%201%201.7-.92a2.62%202.62%200%200%200%202-1.13a3.64%203.64%200%200%200%20.16-3.11c-.26-1-.4-1.67.1-2.34a4.5%204.5%200%200%201%201.23-.53c1.27-.43%203-1%203.44-2.84c.56-2.33-.4-4-1.25-5.55L15.63%204H16c2.263%200%204.48.646%206.39%201.86a21.7%2021.7%200%200%201-3.76%204.4c-1.38%201.25-.37%202.69.3%203.64A4%204%200%200%201%2020%2016.83a1.68%201.68%200%200%200%20.42%201.59a2.13%202.13%200%200%200%202.08.17q.36-.102.73-.15c.11.38-.1.69-1%201.52s-2.09%201.95-1.73%203.74a3.75%203.75%200%200%200%201.9%202.42a11.92%2011.92%200%200%201-14.49-1.28m16.2%200l-.39-.25c-.7-.42-1.13-.72-1.24-1.27s.25-1.05%201.14-1.88s2.13-2%201.47-3.77c-.61-1.61-2.29-1.2-3.05-1a6.18%206.18%200%200%200-1.47-3.9a3.8%203.8%200%200%201-.6-1a23.3%2023.3%200%200%200%204-4.67a11.95%2011.95%200%200%201%20.12%2017.75z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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