Autopilot icon
The Autopilot 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_autopilot_20_regular.svg
Autopilot icon in React
npm install @fluentui/react-icons
import { Autopilot20Regular } from "@fluentui/react-icons";
export function Example() {
return <Autopilot20Regular aria-label="Autopilot" />;
}Use the Autopilot 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 { Autopilot20Regular, Autopilot20Filled } from "@fluentui/react-icons";
export function Example() {
return <Autopilot20Regular aria-label="Autopilot" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_autopilot_20_regular.svg" width="20" height="20" alt="Autopilot"> 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="M16 3a3 3 0 0 1 3 3v.1a3 3 0 0 1-1.05 2.28l-7 5.98-3.64 3.1a2.23 2.23 0 0 1-3.62-1.14 2.2 2.2 0 0 1 .26-1.7l3.38-5.54-4.08-1.92A2.18 2.18 0 0 1 4.18 3zM4.8 15.15A1.22 1.22 0 0 0 5.85 17q.46 0 .81-.3l3.66-3.12a2 2 0 0 0-.46-3.3L8.24 9.5zM9.32 4a2.8 2.8 0 0 1 .26 3.32l-.81 1.34 1.59.75c1 .47 1.64 1.48 1.64 2.59v.14l5.3-4.52A2 2 0 0 0 18 6.1V6a2 2 0 0 0-2-2zM4.18 4a1.18 1.18 0 0 0-.5 2.25l4.18 1.98.87-1.43a1.84 1.84 0 0 0-1.38-2.79L7.15 4z"/></svg>Details
| Name | Autopilot |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_autopilot_20_regular.svg |
| Filled file | ic_fluent_autopilot_20_filled.svg |
| React (Regular) | Autopilot20Regular |
| React (Filled) | Autopilot20Filled |
| License | MIT (© Microsoft Corporation) |