Globe Star icon
Used in scenarios representing the internet & global representation scenarios. The Globe Star icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_globe_star_16_regular.svg
Globe Star icon in React
npm install @fluentui/react-icons
import { GlobeStar16Regular } from "@fluentui/react-icons";
export function Example() {
return <GlobeStar16Regular aria-label="Globe Star" />;
}Use the Globe Star icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { GlobeStar16Regular, GlobeStar16Filled } from "@fluentui/react-icons";
export function Example() {
return <GlobeStar16Regular aria-label="Globe Star" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_globe_star_20_regular.svg" width="20" height="20" alt="Globe Star"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M10.25 18H10a8 8 0 1 1 8-7.75 6 6 0 0 0-1.01-.66 7 7 0 0 0-.45-2.09h-2.73q.12.73.16 1.53-.51.05-.99.18-.05-.9-.19-1.71H7.21a15 15 0 0 0 0 5h2.16q-.19.48-.28 1H7.42q.23.89.56 1.6c.48 1.02 1.04 1.6 1.58 1.81q.28.6.7 1.09m1.77-13.1C11.41 3.6 10.66 3 10 3s-1.4.59-2.02 1.9q-.33.71-.56 1.6h5.16a9 9 0 0 0-.56-1.6M6.4 6.5q.26-1.12.68-2.01.28-.61.64-1.1A7 7 0 0 0 3.94 6.5zM6 10q0-1.31.2-2.5H3.45a7 7 0 0 0 0 5h2.73Q6.01 11.31 6 10m1.07 5.51q-.4-.9-.68-2.01H3.94a7 7 0 0 0 3.77 3.12q-.36-.5-.64-1.1m9-9.01a7 7 0 0 0-3.78-3.12q.36.5.64 1.1.4.9.68 2.02zM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9m.95-5.6H17c.48 0 .68.64.3.94l-1.26.94.48 1.53c.15.49-.38.89-.77.59l-1.25-.95-1.25.95c-.4.3-.92-.1-.77-.59l.48-1.53-1.25-.94c-.4-.3-.2-.95.3-.95h1.54l.47-1.53a.5.5 0 0 1 .96 0z"/></svg>Details
| Name | Globe Star |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_globe_star_20_regular.svg |
| Filled file | ic_fluent_globe_star_20_filled.svg |
| React (Regular) | GlobeStar16Regular, GlobeStar20Regular |
| React (Filled) | GlobeStar16Filled, GlobeStar20Filled |
| License | MIT (© Microsoft Corporation) |