Settings Sync icon

The Settings Sync 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_settings_sync_20_regular.svg

Settings Sync icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <SettingsSync20Regular aria-label="Settings Sync" />;
}

Settings Sync icon in SVG

npm install @fluentui/svg-icons

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

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

Settings Sync icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

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

Settings Sync 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="&#xF0C8E;" FontSize="20" />

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

Settings Sync 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_settings_sync_20_regular"></i>

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

Settings Sync icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_settings_sync_20_regular

Settings Sync icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .settingsSync20Regular)

Settings Sync 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 Settings Sync 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 { SettingsSync20Regular, SettingsSync20Filled } from "@fluentui/react-icons";

export function Example() {
  return <SettingsSync20Regular aria-label="Settings Sync" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_settings_sync_20_regular.svg" width="20" height="20" alt="Settings Sync">

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 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9M10 1.5q.9 0 1.78.19.32.08.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13q1.21 1.36 1.78 3.08.08.32-.15.54l-1.56 1.32-.07.07q-.5-.17-1.04-.26a2 2 0 0 1 .47-.57l1.29-1.1a8 8 0 0 0-1.25-2.16l-1.6.58a2 2 0 0 1-2.63-1.53l-.3-1.67a8 8 0 0 0-2.5 0l-.3 1.67A2 2 0 0 1 5.81 5.8l-1.6-.58a8 8 0 0 0-1.24 2.16l1.3 1.1a2 2 0 0 1 0 3.04l-1.3 1.1q.44 1.19 1.25 2.16l1.6-.58a2 2 0 0 1 2.63 1.53l.3 1.67q.57.1 1.14.1.35.53.8.97a9 9 0 0 1-2.47-.16.5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4A9 9 0 0 1 10 1.5M12.5 15a.5.5 0 0 0-.5.5V17a.5.5 0 1 0 1 0v-.15a3 3 0 0 0 3.62-.48.5.5 0 0 0-.7-.7 2 2 0 0 1-2.39.33H14a.5.5 0 0 0 0-1zm4-3.5a.5.5 0 0 0-.5.5v.15a3 3 0 0 0-3.62.48.5.5 0 1 0 .7.7 2 2 0 0 1 2.39-.33H15a.5.5 0 1 0 0 1h1.5a.5.5 0 0 0 .5-.5V12a.5.5 0 0 0-.5-.5m-6.5-4a2.5 2.5 0 0 1 2.43 1.9q-.5.2-.94.5a1.5 1.5 0 1 0-1.6 1.6q-.29.44-.48.93A2.5 2.5 0 0 1 10 7.5"/></svg>

Details

NameSettings Sync
StylesRegular (outlined), Filled
Sizes20 px
Regular (outlined) fileic_fluent_settings_sync_20_regular.svg
Filled fileic_fluent_settings_sync_20_filled.svg
React (Regular)SettingsSync20Regular
React (Filled)SettingsSync20Filled
LicenseMIT (© Microsoft Corporation)

Related icons