Star Arrow Right icon

The Star Arrow Right icon is part of Microsoft's Fluent UI System Icons, available here in the light style 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.

Light

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.

Light, 32 px

ic_fluent_star_arrow_right_32_light.svg

Star Arrow Right icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <StarArrowRight32Light aria-label="Star Arrow Right" />;
}

Star Arrow Right icon in SVG

npm install @fluentui/svg-icons

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

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

Star Arrow Right icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.star_arrow_right_32_light)

Star Arrow Right icon in WinUI / WPF

Add FluentSystemIcons-Light.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-Light.ttf#FluentSystemIcons-Light" Glyph="&#xE0AA;" FontSize="32" />

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

Star Arrow Right icon in Icon font

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

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

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

Star Arrow Right 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 Star Arrow Right 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 { StarArrowRight32Light } from "@fluentui/react-icons";

export function Example() {
  return <StarArrowRight32Light aria-label="Star Arrow Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_star_arrow_right_32_light.svg" width="32" height="32" alt="Star Arrow Right">

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="M20.4 11.35a1 1 0 0 1-.75-.55l-3.2-6.52a.5.5 0 0 0-.9 0l-3.2 6.52a1 1 0 0 1-.75.55L4.43 12.4a.5.5 0 0 0-.28.85l1.26 1.23a9 9 0 0 0-.9.53l-1.06-1.05a1.5 1.5 0 0 1 .83-2.55l7.18-1.05 3.2-6.52a1.5 1.5 0 0 1 2.69 0l3.2 6.52 7.17 1.05a1.5 1.5 0 0 1 .83 2.55l-5.2 5.1 1.23 7.18a1.5 1.5 0 0 1-2.18 1.58L18 25.5q.16-.48.27-.98l4.6 2.43c.36.2.8-.12.72-.53l-1.22-7.18a1 1 0 0 1 .29-.88l5.2-5.1a.5.5 0 0 0-.29-.85zM17 22.5a7.5 7.5 0 1 0-15 0 7.5 7.5 0 0 0 15 0m-12.25-1h7.69l-2.72-2.72a.75.75 0 1 1 1.06-1.06l4 4c.3.3.3.77 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06L12.44 23H4.75a.75.75 0 0 1 0-1.5"/></svg>

Details

NameStar Arrow Right
StylesLight
Sizes32 px
Light fileic_fluent_star_arrow_right_32_light.svg
React (Light)StarArrowRight32Light
LicenseMIT (© Microsoft Corporation)

Related icons