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.

Regular (outlined)

SVG

Filled

SVG

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" />;
}

Globe Star icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/globe_star_16_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/globe_star_16_regular.svg" width="16" height="16" alt="Globe Star">

Globe Star icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size16.GlobeStar())" />

Globe Star icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.globe_star_16_regular)

Globe Star icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xF4EB;" FontSize="16" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xF4EB;" FontSize="16" />

Globe Star icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_globe_star_16_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\f4eb";
  font-size: 16px;
}

Globe Star icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_globe_star_16_regular" />

// Kotlin
R.drawable.ic_fluent_globe_star_16_regular

Globe Star icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .globeStar16Regular)

Globe Star icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'>…</svg>")

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

NameGlobe Star
StylesRegular (outlined), Filled
Sizes16 px, 20 px
Regular (outlined) fileic_fluent_globe_star_20_regular.svg
Filled fileic_fluent_globe_star_20_filled.svg
React (Regular)GlobeStar16Regular, GlobeStar20Regular
React (Filled)GlobeStar16Filled, GlobeStar20Filled
LicenseMIT (© Microsoft Corporation)

Keywords

webworldearthglobal

Related icons