Radar Checkmark icon

Used to represent tracking, alert, and watching scenarios. The Radar Checkmark icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 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, 20 px

ic_fluent_radar_checkmark_20_regular.svg

Radar Checkmark icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <RadarCheckmark20Regular aria-label="Radar Checkmark" />;
}

Radar Checkmark icon in SVG

npm install @fluentui/svg-icons

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

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

Radar Checkmark icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

<FluentIcon Value="@(new Icons.Regular.Size20.RadarCheckmark())" />

Radar Checkmark icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.radar_checkmark_20_regular)

Radar Checkmark 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="&#xE9F1;" FontSize="20" />

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

Radar Checkmark 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_radar_checkmark_20_regular"></i>

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

Radar Checkmark icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_radar_checkmark_20_regular

Radar Checkmark icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .radarCheckmark20Regular)

Radar Checkmark 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='20' height='20' viewBox='0 0 20 20'>…</svg>")

Use the Radar Checkmark 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 { RadarCheckmark20Regular, RadarCheckmark20Filled } from "@fluentui/react-icons";

export function Example() {
  return <RadarCheckmark20Regular aria-label="Radar Checkmark" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_radar_checkmark_20_regular.svg" width="20" height="20" alt="Radar Checkmark">

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="m14.5 3.38-.72.72A7 7 0 0 0 3 9.6q-.54.27-1 .65a8 8 0 0 1 12.5-6.87M9.75 18q.38-.47.66-1.01a7 7 0 0 0 4.54-2.04.5.5 0 0 1 .7.7A8 8 0 0 1 9.76 18M11 14.5l-.01.4a5 5 0 0 0 2.55-1.36.5.5 0 1 0-.71-.71q-.83.8-1.86 1.05.03.3.03.62M5.5 9l.62.03a3.98 3.98 0 0 1 5.44-2.71l.75-.75A5 5 0 0 0 5.1 9zm3.54 1.3q.36.3.67.66a1 1 0 0 0 1.26-1.22l4.88-4.89a.5.5 0 0 0-.7-.7l-4.9 4.88a1 1 0 0 0-1.2 1.26M17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0M16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1m-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0m-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7"/></svg>

Details

NameRadar Checkmark
StylesRegular (outlined), Filled
Sizes20 px
Regular (outlined) fileic_fluent_radar_checkmark_20_regular.svg
Filled fileic_fluent_radar_checkmark_20_filled.svg
React (Regular)RadarCheckmark20Regular
React (Filled)RadarCheckmark20Filled
LicenseMIT (© Microsoft Corporation)

Keywords

trackwatchping

Related icons