Radar icon
Used to represent tracking, alert, and watching scenarios. The Radar 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.
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_20_regular.svg
Radar icon in React
npm install @fluentui/react-icons
import { Radar20Regular } from "@fluentui/react-icons";
export function Example() {
return <Radar20Regular aria-label="Radar" />;
}Use the Radar 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 { Radar20Regular, Radar20Filled } from "@fluentui/react-icons";
export function Example() {
return <Radar20Regular aria-label="Radar" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_radar_20_regular.svg" width="20" height="20" alt="Radar"> 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 1 0 1.17 10.85.5.5 0 0 1 .7.7A8 8 0 1 1 14.5 3.39m-2.94 2.94.75-.75a5 5 0 1 0 1.23 7.97.5.5 0 1 0-.71-.71 4 4 0 1 1-1.27-6.51m4.3-2.17c.19.2.19.5 0 .7l-4.9 4.9a1 1 0 1 1-.7-.72l4.89-4.88c.2-.2.5-.2.7 0M17 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 1"/></svg>Details
| Name | Radar |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_radar_20_regular.svg |
| Filled file | ic_fluent_radar_20_filled.svg |
| React (Regular) | Radar20Regular |
| React (Filled) | Radar20Filled |
| License | MIT (© Microsoft Corporation) |