globe location icon
globe-location-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.
- Name
- globe-location-20-filled
- Set
- Fluent UI System Icons
- Style
- 20 Filled
- Viewbox
- 20×20
- License
- MIT
3 other variants in Fluent UI System Icons
Related icons in Fluent UI System Icons
globe-add-20-filledglobe-arrow-forward-16-filledglobe-arrow-up-16-filledglobe-clock-16-filledglobe-desktop-20-filledglobe-error-16-filledglobe-off-12-filledglobe-person-20-filledglobe-prohibited-16-filledglobe-search-20-filledglobe-shield-20-filledglobe-stand-20-filledglobe-star-16-filledglobe-surface-20-filledglobe-sync-16-filledglobe-video-20-filledglobe-warning-16-filled
Use the globe location icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M7.318 6.5c.168-.873.397-1.657.67-2.32c.301-.733.648-1.294 1.008-1.663C9.354 2.149 9.693 2 10 2s.646.149 1.004.517c.36.37.707.93 1.008 1.663c.273.663.502 1.447.67 2.32zm-.255-2.7a7.2 7.2 0 0 1 .827-1.52A8.02 8.02 0 0 0 2.804 6.5h3.497c.182-1.007.441-1.922.762-2.7m5.874 0a7.2 7.2 0 0 0-.827-1.519A8.02 8.02 0 0 1 17.196 6.5h-3.497c-.182-1.007-.441-1.922-.762-2.7m.913 3.7h3.752c.234.712.37 1.468.394 2.253a4.4 4.4 0 0 0-2.495-.752c-.54 0-1.048.09-1.514.255A20 20 0 0 0 13.85 7.5m-.851 2.258a19 19 0 0 0-.157-2.258H7.158A19 19 0 0 0 7 10c0 .875.056 1.714.158 2.5h3.982c.272-1.128.93-2.109 1.859-2.742M11.003 13.5H7.318c.168.873.397 1.657.67 2.32c.301.733.648 1.294 1.008 1.663c.358.368.697.517 1.004.517s.646-.149 1.004-.517c.254-.26.502-.617.732-1.063c-.491-.934-.736-1.87-.736-2.738zm-8.199 0a8.02 8.02 0 0 0 5.087 4.219a7.2 7.2 0 0 1-.828-1.518c-.32-.78-.58-1.694-.762-2.701zm3.346-1H2.398A8 8 0 0 1 2 10c0-.873.14-1.713.398-2.5H6.15C6.052 8.295 6 9.134 6 10s.052 1.705.15 2.5M19 13.682c0-2.033-1.465-3.681-3.499-3.681S12 11.649 12 13.682c0 1.524.982 3.53 3.256 5.236c.145.11.345.11.49 0C18.022 17.212 19 15.206 19 13.682m-2-.182a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0"/></svg>
React
import type { SVGProps } from "react";
export function FluentGlobeLocation20Filled(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M7.318 6.5c.168-.873.397-1.657.67-2.32c.301-.733.648-1.294 1.008-1.663C9.354 2.149 9.693 2 10 2s.646.149 1.004.517c.36.37.707.93 1.008 1.663c.273.663.502 1.447.67 2.32zm-.255-2.7a7.2 7.2 0 0 1 .827-1.52A8.02 8.02 0 0 0 2.804 6.5h3.497c.182-1.007.441-1.922.762-2.7m5.874 0a7.2 7.2 0 0 0-.827-1.519A8.02 8.02 0 0 1 17.196 6.5h-3.497c-.182-1.007-.441-1.922-.762-2.7m.913 3.7h3.752c.234.712.37 1.468.394 2.253a4.4 4.4 0 0 0-2.495-.752c-.54 0-1.048.09-1.514.255A20 20 0 0 0 13.85 7.5m-.851 2.258a19 19 0 0 0-.157-2.258H7.158A19 19 0 0 0 7 10c0 .875.056 1.714.158 2.5h3.982c.272-1.128.93-2.109 1.859-2.742M11.003 13.5H7.318c.168.873.397 1.657.67 2.32c.301.733.648 1.294 1.008 1.663c.358.368.697.517 1.004.517s.646-.149 1.004-.517c.254-.26.502-.617.732-1.063c-.491-.934-.736-1.87-.736-2.738zm-8.199 0a8.02 8.02 0 0 0 5.087 4.219a7.2 7.2 0 0 1-.828-1.518c-.32-.78-.58-1.694-.762-2.701zm3.346-1H2.398A8 8 0 0 1 2 10c0-.873.14-1.713.398-2.5H6.15C6.052 8.295 6 9.134 6 10s.052 1.705.15 2.5M19 13.682c0-2.033-1.465-3.681-3.499-3.681S12 11.649 12 13.682c0 1.524.982 3.53 3.256 5.236c.145.11.345.11.49 0C18.022 17.212 19 15.206 19 13.682m-2-.182a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M7.318 6.5c.168-.873.397-1.657.67-2.32c.301-.733.648-1.294 1.008-1.663C9.354 2.149 9.693 2 10 2s.646.149 1.004.517c.36.37.707.93 1.008 1.663c.273.663.502 1.447.67 2.32zm-.255-2.7a7.2 7.2 0 0 1 .827-1.52A8.02 8.02 0 0 0 2.804 6.5h3.497c.182-1.007.441-1.922.762-2.7m5.874 0a7.2 7.2 0 0 0-.827-1.519A8.02 8.02 0 0 1 17.196 6.5h-3.497c-.182-1.007-.441-1.922-.762-2.7m.913 3.7h3.752c.234.712.37 1.468.394 2.253a4.4 4.4 0 0 0-2.495-.752c-.54 0-1.048.09-1.514.255A20 20 0 0 0 13.85 7.5m-.851 2.258a19 19 0 0 0-.157-2.258H7.158A19 19 0 0 0 7 10c0 .875.056 1.714.158 2.5h3.982c.272-1.128.93-2.109 1.859-2.742M11.003 13.5H7.318c.168.873.397 1.657.67 2.32c.301.733.648 1.294 1.008 1.663c.358.368.697.517 1.004.517s.646-.149 1.004-.517c.254-.26.502-.617.732-1.063c-.491-.934-.736-1.87-.736-2.738zm-8.199 0a8.02 8.02 0 0 0 5.087 4.219a7.2 7.2 0 0 1-.828-1.518c-.32-.78-.58-1.694-.762-2.701zm3.346-1H2.398A8 8 0 0 1 2 10c0-.873.14-1.713.398-2.5H6.15C6.052 8.295 6 9.134 6 10s.052 1.705.15 2.5M19 13.682c0-2.033-1.465-3.681-3.499-3.681S12 11.649 12 13.682c0 1.524.982 3.53 3.256 5.236c.145.11.345.11.49 0C18.022 17.212 19 15.206 19 13.682m-2-.182a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0"/></svg> </template>
CSS
.icon-globe-location-20-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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.318%206.5c.168-.873.397-1.657.67-2.32c.301-.733.648-1.294%201.008-1.663C9.354%202.149%209.693%202%2010%202s.646.149%201.004.517c.36.37.707.93%201.008%201.663c.273.663.502%201.447.67%202.32zm-.255-2.7a7.2%207.2%200%200%201%20.827-1.52A8.02%208.02%200%200%200%202.804%206.5h3.497c.182-1.007.441-1.922.762-2.7m5.874%200a7.2%207.2%200%200%200-.827-1.519A8.02%208.02%200%200%201%2017.196%206.5h-3.497c-.182-1.007-.441-1.922-.762-2.7m.913%203.7h3.752c.234.712.37%201.468.394%202.253a4.4%204.4%200%200%200-2.495-.752c-.54%200-1.048.09-1.514.255A20%2020%200%200%200%2013.85%207.5m-.851%202.258a19%2019%200%200%200-.157-2.258H7.158A19%2019%200%200%200%207%2010c0%20.875.056%201.714.158%202.5h3.982c.272-1.128.93-2.109%201.859-2.742M11.003%2013.5H7.318c.168.873.397%201.657.67%202.32c.301.733.648%201.294%201.008%201.663c.358.368.697.517%201.004.517s.646-.149%201.004-.517c.254-.26.502-.617.732-1.063c-.491-.934-.736-1.87-.736-2.738zm-8.199%200a8.02%208.02%200%200%200%205.087%204.219a7.2%207.2%200%200%201-.828-1.518c-.32-.78-.58-1.694-.762-2.701zm3.346-1H2.398A8%208%200%200%201%202%2010c0-.873.14-1.713.398-2.5H6.15C6.052%208.295%206%209.134%206%2010s.052%201.705.15%202.5M19%2013.682c0-2.033-1.465-3.681-3.499-3.681S12%2011.649%2012%2013.682c0%201.524.982%203.53%203.256%205.236c.145.11.345.11.49%200C18.022%2017.212%2019%2015.206%2019%2013.682m-2-.182a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.318%206.5c.168-.873.397-1.657.67-2.32c.301-.733.648-1.294%201.008-1.663C9.354%202.149%209.693%202%2010%202s.646.149%201.004.517c.36.37.707.93%201.008%201.663c.273.663.502%201.447.67%202.32zm-.255-2.7a7.2%207.2%200%200%201%20.827-1.52A8.02%208.02%200%200%200%202.804%206.5h3.497c.182-1.007.441-1.922.762-2.7m5.874%200a7.2%207.2%200%200%200-.827-1.519A8.02%208.02%200%200%201%2017.196%206.5h-3.497c-.182-1.007-.441-1.922-.762-2.7m.913%203.7h3.752c.234.712.37%201.468.394%202.253a4.4%204.4%200%200%200-2.495-.752c-.54%200-1.048.09-1.514.255A20%2020%200%200%200%2013.85%207.5m-.851%202.258a19%2019%200%200%200-.157-2.258H7.158A19%2019%200%200%200%207%2010c0%20.875.056%201.714.158%202.5h3.982c.272-1.128.93-2.109%201.859-2.742M11.003%2013.5H7.318c.168.873.397%201.657.67%202.32c.301.733.648%201.294%201.008%201.663c.358.368.697.517%201.004.517s.646-.149%201.004-.517c.254-.26.502-.617.732-1.063c-.491-.934-.736-1.87-.736-2.738zm-8.199%200a8.02%208.02%200%200%200%205.087%204.219a7.2%207.2%200%200%201-.828-1.518c-.32-.78-.58-1.694-.762-2.701zm3.346-1H2.398A8%208%200%200%201%202%2010c0-.873.14-1.713.398-2.5H6.15C6.052%208.295%206%209.134%206%2010s.052%201.705.15%202.5M19%2013.682c0-2.033-1.465-3.681-3.499-3.681S12%2011.649%2012%2013.682c0%201.524.982%203.53%203.256%205.236c.145.11.345.11.49%200C18.022%2017.212%2019%2015.206%2019%2013.682m-2-.182a1.5%201.5%200%201%201-3%200a1.5%201.5%200%200%201%203%200%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/globe-location-20-filled.svg?color=%231a73e8&size=48