globe alt icon
globe-alt from css.gg by Astrit · Outline · MIT Free for personal and commercial use.
- Name
- globe-alt
- Set
- css.gg
- Style
- Outline
- Viewbox
- 24×24
- License
- MIT
The same icon in other sets
Use the globe alt icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m2.806-2.585a7 7 0 0 0 4.175-5.89c-.823.449-1.861.817-3.044 1.073c-.149 1.87-.554 3.54-1.131 4.817M9.195 5.585a7.02 7.02 0 0 0-3.973 4.659c.232.22.626.49 1.226.757c.45.2.973.379 1.557.529c.054-2.324.498-4.415 1.19-5.945m.906 8.326c.156 1.457.484 2.71.898 3.64c.294.662.593 1.074.823 1.293c.082.078.14.12.178.14a1 1 0 0 0 .178-.14c.23-.22.529-.63.823-1.292c.414-.932.742-2.184.898-3.641a20 20 0 0 1-3.798 0m-2.038-.313c.149 1.87.554 3.54 1.131 4.817a7 7 0 0 1-4.175-5.89c.823.449 1.861.817 3.044 1.073M14 11.89a18 18 0 0 1-4 0c.014-2.226.423-4.145 1-5.442c.293-.661.592-1.073.822-1.292a1 1 0 0 1 .178-.14a1 1 0 0 1 .178.14c.23.22.529.63.823 1.292c.576 1.297.986 3.216.999 5.442m1.995-.36c-.053-2.324-.498-4.415-1.19-5.945a7.02 7.02 0 0 1 3.973 4.659c-.232.22-.626.49-1.226.757c-.45.2-.973.379-1.557.529" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function GgGlobeAlt(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fillRule="evenodd" d="M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m2.806-2.585a7 7 0 0 0 4.175-5.89c-.823.449-1.861.817-3.044 1.073c-.149 1.87-.554 3.54-1.131 4.817M9.195 5.585a7.02 7.02 0 0 0-3.973 4.659c.232.22.626.49 1.226.757c.45.2.973.379 1.557.529c.054-2.324.498-4.415 1.19-5.945m.906 8.326c.156 1.457.484 2.71.898 3.64c.294.662.593 1.074.823 1.293c.082.078.14.12.178.14a1 1 0 0 0 .178-.14c.23-.22.529-.63.823-1.292c.414-.932.742-2.184.898-3.641a20 20 0 0 1-3.798 0m-2.038-.313c.149 1.87.554 3.54 1.131 4.817a7 7 0 0 1-4.175-5.89c.823.449 1.861.817 3.044 1.073M14 11.89a18 18 0 0 1-4 0c.014-2.226.423-4.145 1-5.442c.293-.661.592-1.073.822-1.292a1 1 0 0 1 .178-.14a1 1 0 0 1 .178.14c.23.22.529.63.823 1.292c.576 1.297.986 3.216.999 5.442m1.995-.36c-.053-2.324-.498-4.415-1.19-5.945a7.02 7.02 0 0 1 3.973 4.659c-.232.22-.626.49-1.226.757c-.45.2-.973.379-1.557.529" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m2.806-2.585a7 7 0 0 0 4.175-5.89c-.823.449-1.861.817-3.044 1.073c-.149 1.87-.554 3.54-1.131 4.817M9.195 5.585a7.02 7.02 0 0 0-3.973 4.659c.232.22.626.49 1.226.757c.45.2.973.379 1.557.529c.054-2.324.498-4.415 1.19-5.945m.906 8.326c.156 1.457.484 2.71.898 3.64c.294.662.593 1.074.823 1.293c.082.078.14.12.178.14a1 1 0 0 0 .178-.14c.23-.22.529-.63.823-1.292c.414-.932.742-2.184.898-3.641a20 20 0 0 1-3.798 0m-2.038-.313c.149 1.87.554 3.54 1.131 4.817a7 7 0 0 1-4.175-5.89c.823.449 1.861.817 3.044 1.073M14 11.89a18 18 0 0 1-4 0c.014-2.226.423-4.145 1-5.442c.293-.661.592-1.073.822-1.292a1 1 0 0 1 .178-.14a1 1 0 0 1 .178.14c.23.22.529.63.823 1.292c.576 1.297.986 3.216.999 5.442m1.995-.36c-.053-2.324-.498-4.415-1.19-5.945a7.02 7.02 0 0 1 3.973 4.659c-.232.22-.626.49-1.226.757c-.45.2-.973.379-1.557.529" clip-rule="evenodd"/></svg> </template>
CSS
.icon-globe-alt {
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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M12%2021a9%209%200%201%200%200-18a9%209%200%200%200%200%2018m2.806-2.585a7%207%200%200%200%204.175-5.89c-.823.449-1.861.817-3.044%201.073c-.149%201.87-.554%203.54-1.131%204.817M9.195%205.585a7.02%207.02%200%200%200-3.973%204.659c.232.22.626.49%201.226.757c.45.2.973.379%201.557.529c.054-2.324.498-4.415%201.19-5.945m.906%208.326c.156%201.457.484%202.71.898%203.64c.294.662.593%201.074.823%201.293c.082.078.14.12.178.14a1%201%200%200%200%20.178-.14c.23-.22.529-.63.823-1.292c.414-.932.742-2.184.898-3.641a20%2020%200%200%201-3.798%200m-2.038-.313c.149%201.87.554%203.54%201.131%204.817a7%207%200%200%201-4.175-5.89c.823.449%201.861.817%203.044%201.073M14%2011.89a18%2018%200%200%201-4%200c.014-2.226.423-4.145%201-5.442c.293-.661.592-1.073.822-1.292a1%201%200%200%201%20.178-.14a1%201%200%200%201%20.178.14c.23.22.529.63.823%201.292c.576%201.297.986%203.216.999%205.442m1.995-.36c-.053-2.324-.498-4.415-1.19-5.945a7.02%207.02%200%200%201%203.973%204.659c-.232.22-.626.49-1.226.757c-.45.2-.973.379-1.557.529%22%20clip-rule%3D%22evenodd%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M12%2021a9%209%200%201%200%200-18a9%209%200%200%200%200%2018m2.806-2.585a7%207%200%200%200%204.175-5.89c-.823.449-1.861.817-3.044%201.073c-.149%201.87-.554%203.54-1.131%204.817M9.195%205.585a7.02%207.02%200%200%200-3.973%204.659c.232.22.626.49%201.226.757c.45.2.973.379%201.557.529c.054-2.324.498-4.415%201.19-5.945m.906%208.326c.156%201.457.484%202.71.898%203.64c.294.662.593%201.074.823%201.293c.082.078.14.12.178.14a1%201%200%200%200%20.178-.14c.23-.22.529-.63.823-1.292c.414-.932.742-2.184.898-3.641a20%2020%200%200%201-3.798%200m-2.038-.313c.149%201.87.554%203.54%201.131%204.817a7%207%200%200%201-4.175-5.89c.823.449%201.861.817%203.044%201.073M14%2011.89a18%2018%200%200%201-4%200c.014-2.226.423-4.145%201-5.442c.293-.661.592-1.073.822-1.292a1%201%200%200%201%20.178-.14a1%201%200%200%201%20.178.14c.23.22.529.63.823%201.292c.576%201.297.986%203.216.999%205.442m1.995-.36c-.053-2.324-.498-4.415-1.19-5.945a7.02%207.02%200%200%201%203.973%204.659c-.232.22-.626.49-1.226.757c-.45.2-.973.379-1.557.529%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/gg/globe-alt.svg?color=%231a73e8&size=48