earth-europe from Font Awesome Solid by Dave Gandy · Solid · CC-BY-4.0 Attribution required.

Name
earth-europe
Set
Font Awesome Solid
Style
Solid
Viewbox
640×640
License
CC BY 4.0

The same icon in other sets

Related icons in Font Awesome Solid

Use the earth europe icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 640 640"><path fill="currentColor" d="M320.2 112C435 112.1 528 205.2 528 320c0 22.1-3.4 43.4-9.8 63.4c-2 .4-4.1.6-6.2.6h-2.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V272c0-8.8 7.2-16 16-16s16-7.2 16-16s-7.2-16-16-16h-24c-13.3 0-24 10.7-24 24s-10.7 24-24 24h-56c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-25.4c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l70.1-70.1c2.1-2.1 3.3-5 3.3-8c0-6.2-5.1-11.3-11.3-11.3h-14.1c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l23.1-23.1c.8-.8 1.6-1.5 2.5-2.2zm182.2 308.1c-32.8 59.6-93.9 101.4-165.2 107.2c-.7-2.3-1.1-4.8-1.1-7.3c0-13.3-10.7-24-24-24h-26.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V368c0-17.7 14.3-32 32-32h98.7c8.5 0 16.6 3.4 22.6 9.4l29.3 29.3c6 6 14.1 9.4 22.6 9.4h5.5c8.5 0 16.6 3.4 22.6 9.4l16 16c4.2 4.2 10 6.6 16 6.6c4.8 0 9.3 1.5 13 4.1zM320 576l26.2-1.3c-8.6.9-17.3 1.3-26.2 1.3m26.2-1.3C475.3 561.6 576 452.6 576 320c0-141.4-114.6-256-256-256S64 178.6 64 320c0 127.5 93.2 233.3 215.3 252.8c13.2 2.1 26.8 3.2 40.7 3.2zm-94.9-387.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>

React

import type { SVGProps } from "react";

export function Fa7SolidEarthEurope(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 640 640"><path fill="currentColor" d="M320.2 112C435 112.1 528 205.2 528 320c0 22.1-3.4 43.4-9.8 63.4c-2 .4-4.1.6-6.2.6h-2.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V272c0-8.8 7.2-16 16-16s16-7.2 16-16s-7.2-16-16-16h-24c-13.3 0-24 10.7-24 24s-10.7 24-24 24h-56c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-25.4c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l70.1-70.1c2.1-2.1 3.3-5 3.3-8c0-6.2-5.1-11.3-11.3-11.3h-14.1c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l23.1-23.1c.8-.8 1.6-1.5 2.5-2.2zm182.2 308.1c-32.8 59.6-93.9 101.4-165.2 107.2c-.7-2.3-1.1-4.8-1.1-7.3c0-13.3-10.7-24-24-24h-26.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V368c0-17.7 14.3-32 32-32h98.7c8.5 0 16.6 3.4 22.6 9.4l29.3 29.3c6 6 14.1 9.4 22.6 9.4h5.5c8.5 0 16.6 3.4 22.6 9.4l16 16c4.2 4.2 10 6.6 16 6.6c4.8 0 9.3 1.5 13 4.1zM320 576l26.2-1.3c-8.6.9-17.3 1.3-26.2 1.3m26.2-1.3C475.3 561.6 576 452.6 576 320c0-141.4-114.6-256-256-256S64 178.6 64 320c0 127.5 93.2 233.3 215.3 252.8c13.2 2.1 26.8 3.2 40.7 3.2zm-94.9-387.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 640 640"><path fill="currentColor" d="M320.2 112C435 112.1 528 205.2 528 320c0 22.1-3.4 43.4-9.8 63.4c-2 .4-4.1.6-6.2.6h-2.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V272c0-8.8 7.2-16 16-16s16-7.2 16-16s-7.2-16-16-16h-24c-13.3 0-24 10.7-24 24s-10.7 24-24 24h-56c-8.8 0-16 7.2-16 16s-7.2 16-16 16h-25.4c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l70.1-70.1c2.1-2.1 3.3-5 3.3-8c0-6.2-5.1-11.3-11.3-11.3h-14.1c-12.5 0-22.6-10.1-22.6-22.6c0-6 2.4-11.8 6.6-16l23.1-23.1c.8-.8 1.6-1.5 2.5-2.2zm182.2 308.1c-32.8 59.6-93.9 101.4-165.2 107.2c-.7-2.3-1.1-4.8-1.1-7.3c0-13.3-10.7-24-24-24h-26.7c-8.5 0-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V368c0-17.7 14.3-32 32-32h98.7c8.5 0 16.6 3.4 22.6 9.4l29.3 29.3c6 6 14.1 9.4 22.6 9.4h5.5c8.5 0 16.6 3.4 22.6 9.4l16 16c4.2 4.2 10 6.6 16 6.6c4.8 0 9.3 1.5 13 4.1zM320 576l26.2-1.3c-8.6.9-17.3 1.3-26.2 1.3m26.2-1.3C475.3 561.6 576 452.6 576 320c0-141.4-114.6-256-256-256S64 178.6 64 320c0 127.5 93.2 233.3 215.3 252.8c13.2 2.1 26.8 3.2 40.7 3.2zm-94.9-387.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6"/></svg>
</template>

CSS

.icon-earth-europe {
  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%20640%20640%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M320.2%20112C435%20112.1%20528%20205.2%20528%20320c0%2022.1-3.4%2043.4-9.8%2063.4c-2%20.4-4.1.6-6.2.6h-2.7c-8.5%200-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V272c0-8.8%207.2-16%2016-16s16-7.2%2016-16s-7.2-16-16-16h-24c-13.3%200-24%2010.7-24%2024s-10.7%2024-24%2024h-56c-8.8%200-16%207.2-16%2016s-7.2%2016-16%2016h-25.4c-12.5%200-22.6-10.1-22.6-22.6c0-6%202.4-11.8%206.6-16l70.1-70.1c2.1-2.1%203.3-5%203.3-8c0-6.2-5.1-11.3-11.3-11.3h-14.1c-12.5%200-22.6-10.1-22.6-22.6c0-6%202.4-11.8%206.6-16l23.1-23.1c.8-.8%201.6-1.5%202.5-2.2zm182.2%20308.1c-32.8%2059.6-93.9%20101.4-165.2%20107.2c-.7-2.3-1.1-4.8-1.1-7.3c0-13.3-10.7-24-24-24h-26.7c-8.5%200-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V368c0-17.7%2014.3-32%2032-32h98.7c8.5%200%2016.6%203.4%2022.6%209.4l29.3%2029.3c6%206%2014.1%209.4%2022.6%209.4h5.5c8.5%200%2016.6%203.4%2022.6%209.4l16%2016c4.2%204.2%2010%206.6%2016%206.6c4.8%200%209.3%201.5%2013%204.1zM320%20576l26.2-1.3c-8.6.9-17.3%201.3-26.2%201.3m26.2-1.3C475.3%20561.6%20576%20452.6%20576%20320c0-141.4-114.6-256-256-256S64%20178.6%2064%20320c0%20127.5%2093.2%20233.3%20215.3%20252.8c13.2%202.1%2026.8%203.2%2040.7%203.2zm-94.9-387.4l-32%2032c-6.2%206.2-16.4%206.2-22.6%200s-6.2-16.4%200-22.6l32-32c6.2-6.2%2016.4-6.2%2022.6%200s6.2%2016.4%200%2022.6%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%20640%20640%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M320.2%20112C435%20112.1%20528%20205.2%20528%20320c0%2022.1-3.4%2043.4-9.8%2063.4c-2%20.4-4.1.6-6.2.6h-2.7c-8.5%200-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V272c0-8.8%207.2-16%2016-16s16-7.2%2016-16s-7.2-16-16-16h-24c-13.3%200-24%2010.7-24%2024s-10.7%2024-24%2024h-56c-8.8%200-16%207.2-16%2016s-7.2%2016-16%2016h-25.4c-12.5%200-22.6-10.1-22.6-22.6c0-6%202.4-11.8%206.6-16l70.1-70.1c2.1-2.1%203.3-5%203.3-8c0-6.2-5.1-11.3-11.3-11.3h-14.1c-12.5%200-22.6-10.1-22.6-22.6c0-6%202.4-11.8%206.6-16l23.1-23.1c.8-.8%201.6-1.5%202.5-2.2zm182.2%20308.1c-32.8%2059.6-93.9%20101.4-165.2%20107.2c-.7-2.3-1.1-4.8-1.1-7.3c0-13.3-10.7-24-24-24h-26.7c-8.5%200-16.6-3.4-22.6-9.4l-29.3-29.3c-6-6-9.4-14.1-9.4-22.6V368c0-17.7%2014.3-32%2032-32h98.7c8.5%200%2016.6%203.4%2022.6%209.4l29.3%2029.3c6%206%2014.1%209.4%2022.6%209.4h5.5c8.5%200%2016.6%203.4%2022.6%209.4l16%2016c4.2%204.2%2010%206.6%2016%206.6c4.8%200%209.3%201.5%2013%204.1zM320%20576l26.2-1.3c-8.6.9-17.3%201.3-26.2%201.3m26.2-1.3C475.3%20561.6%20576%20452.6%20576%20320c0-141.4-114.6-256-256-256S64%20178.6%2064%20320c0%20127.5%2093.2%20233.3%20215.3%20252.8c13.2%202.1%2026.8%203.2%2040.7%203.2zm-94.9-387.4l-32%2032c-6.2%206.2-16.4%206.2-22.6%200s-6.2-16.4%200-22.6l32-32c6.2-6.2%2016.4-6.2%2022.6%200s6.2%2016.4%200%2022.6%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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