Plug Connected Checkmark icon
Used to represent connections - physical or with app add ins. The Plug Connected 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.
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_plug_connected_checkmark_20_regular.svg
Plug Connected Checkmark icon in React
npm install @fluentui/react-icons
import { PlugConnectedCheckmark20Regular } from "@fluentui/react-icons";
export function Example() {
return <PlugConnectedCheckmark20Regular aria-label="Plug Connected Checkmark" />;
}Use the Plug Connected 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 { PlugConnectedCheckmark20Regular, PlugConnectedCheckmark20Filled } from "@fluentui/react-icons";
export function Example() {
return <PlugConnectedCheckmark20Regular aria-label="Plug Connected Checkmark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_plug_connected_checkmark_20_regular.svg" width="20" height="20" alt="Plug Connected 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="M17.85 2.85a.5.5 0 0 0-.7-.7L14.48 4.8a4.04 4.04 0 0 0-5.33.34l-.3.3a1.5 1.5 0 0 0 0 2.1l2.46 2.47q.42-.3.9-.52L9.55 6.85c-.19-.2-.19-.5 0-.7l.3-.3a3.04 3.04 0 0 1 5.01 3.16q.52.04 1 .16c.37-1.23.15-2.6-.67-3.65zm-10.3 6 2.47 2.46q-.3.42-.52.9L6.85 9.55c-.2-.19-.5-.19-.7 0l-.3.3a3.04 3.04 0 0 0 3.16 5.01q.04.52.16 1c-1.23.37-2.6.15-3.65-.67l-2.67 2.66a.5.5 0 0 1-.7-.7l2.66-2.67a4.04 4.04 0 0 1 .34-5.33l.3-.3a1.5 1.5 0 0 1 2.1 0M19 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 0l-2.65 2.64-.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
| Name | Plug Connected Checkmark |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_plug_connected_checkmark_20_regular.svg |
| Filled file | ic_fluent_plug_connected_checkmark_20_filled.svg |
| React (Regular) | PlugConnectedCheckmark20Regular |
| React (Filled) | PlugConnectedCheckmark20Filled |
| License | MIT (© Microsoft Corporation) |