Glance Horizontal Sparkle icon

The Glance Horizontal Sparkle icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 32 px grid. 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, 32 px

ic_fluent_glance_horizontal_sparkle_32_regular.svg

Glance Horizontal Sparkle icon in React

npm install @fluentui/react-icons

import { GlanceHorizontalSparkle32Regular } from "@fluentui/react-icons";

export function Example() {
  return <GlanceHorizontalSparkle32Regular aria-label="Glance Horizontal Sparkle" />;
}

Glance Horizontal Sparkle icon in SVG

npm install @fluentui/svg-icons

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/glance_horizontal_sparkle_32_regular.svg" width="32" height="32" alt="Glance Horizontal Sparkle">

Glance Horizontal Sparkle icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

<FluentIcon Value="@(new Icons.Regular.Size32.GlanceHorizontalSparkle())" />

Glance Horizontal Sparkle icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.glance_horizontal_sparkle_32_regular)

Glance Horizontal Sparkle 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="&#xF0435;" FontSize="32" />

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

Glance Horizontal Sparkle 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_glance_horizontal_sparkle_32_regular"></i>

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

Glance Horizontal Sparkle icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_glance_horizontal_sparkle_32_regular

Glance Horizontal Sparkle icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .glanceHorizontalSparkle32Regular)

Glance Horizontal Sparkle 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='32' height='32' viewBox='0 0 32 32'>…</svg>")

Use the Glance Horizontal Sparkle 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 { GlanceHorizontalSparkle32Regular, GlanceHorizontalSparkle32Filled } from "@fluentui/react-icons";

export function Example() {
  return <GlanceHorizontalSparkle32Regular aria-label="Glance Horizontal Sparkle" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_glance_horizontal_sparkle_32_regular.svg" width="32" height="32" alt="Glance Horizontal Sparkle">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M21.49 7.51a3.5 3.5 0 0 1 .84 1.36l.54 1.69a.66.66 0 0 0 1.26 0l.54-1.69a3.5 3.5 0 0 1 2.2-2.2l1.69-.54a.67.67 0 0 0 0-1.25l-.04-.01-1.68-.55a3.5 3.5 0 0 1-2.2-2.2L24.1.45a.66.66 0 0 0-1.25 0l-.55 1.69-.01.04a3.5 3.5 0 0 1-2.15 2.15l-1.69.55a.67.67 0 0 0 0 1.25l1.69.55q.78.26 1.36.84m9.33 4.85.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.9 1.9 0 0 0 1.2 1.2M6.25 3A3.25 3.25 0 0 0 3 6.25v5.5C3 13.55 4.46 15 6.25 15h7.5c1.8 0 3.25-1.46 3.25-3.25v-5.5C17 4.45 15.54 3 13.75 3zM5 6.25C5 5.56 5.56 5 6.25 5h7.5c.69 0 1.25.56 1.25 1.25v5.5c0 .69-.56 1.25-1.25 1.25h-7.5C5.56 13 5 12.44 5 11.75zm9 15c0-1.8 1.46-3.25 3.25-3.25h8.5c1.8 0 3.25 1.46 3.25 3.25v4.5c0 1.8-1.46 3.25-3.25 3.25h-8.5A3.25 3.25 0 0 1 14 25.75zM17.25 20c-.69 0-1.25.56-1.25 1.25v4.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-4.5c0-.69-.56-1.25-1.25-1.25zm-11-2A3.25 3.25 0 0 0 3 21.25v4.5C3 27.55 4.46 29 6.25 29h1.5c1.8 0 3.25-1.46 3.25-3.25v-4.5C11 19.45 9.54 18 7.75 18zM5 21.25c0-.69.56-1.25 1.25-1.25h1.5c.69 0 1.25.56 1.25 1.25v4.5C9 26.44 8.44 27 7.75 27h-1.5C5.56 27 5 26.44 5 25.75z"/></svg>

Details

NameGlance Horizontal Sparkle
StylesRegular (outlined), Filled
Sizes32 px
Regular (outlined) fileic_fluent_glance_horizontal_sparkle_32_regular.svg
Filled fileic_fluent_glance_horizontal_sparkle_32_filled.svg
React (Regular)GlanceHorizontalSparkle32Regular
React (Filled)GlanceHorizontalSparkle32Filled
LicenseMIT (© Microsoft Corporation)

Related icons