Checkbox Checked Sync icon
Used for toggle selection states. The Checkbox Checked Sync icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. 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, 16 px
ic_fluent_checkbox_checked_sync_16_regular.svg
Checkbox Checked Sync icon in React
npm install @fluentui/react-icons
import { CheckboxCheckedSync16Regular } from "@fluentui/react-icons";
export function Example() {
return <CheckboxCheckedSync16Regular aria-label="Checkbox Checked Sync" />;
}Use the Checkbox Checked 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 { CheckboxCheckedSync16Regular, CheckboxCheckedSync16Filled } from "@fluentui/react-icons";
export function Example() {
return <CheckboxCheckedSync16Regular aria-label="Checkbox Checked Sync" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_checkbox_checked_sync_20_regular.svg" width="20" height="20" alt="Checkbox Checked 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="M5 2a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h4.2q-.13-.49-.18-1H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v4.02q.51.05 1 .19V5a3 3 0 0 0-3-3zm7.85 4.85a.5.5 0 0 0-.7-.7L7.5 10.79 5.85 9.15a.5.5 0 1 0-.7.7l2 2c.2.2.5.2.7 0zM10 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0m6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a2 2 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5m-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a2 2 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66"/></svg>Details
| Name | Checkbox Checked Sync |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_checkbox_checked_sync_20_regular.svg |
| Filled file | ic_fluent_checkbox_checked_sync_20_filled.svg |
| React (Regular) | CheckboxCheckedSync16Regular, CheckboxCheckedSync20Regular |
| React (Filled) | CheckboxCheckedSync16Filled, CheckboxCheckedSync20Filled |
| License | MIT (© Microsoft Corporation) |