Plug Connected Add icon
Used to represent connections - physical or with app add ins. The Plug Connected Add 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_add_20_regular.svg
Plug Connected Add icon in React
npm install @fluentui/react-icons
import { PlugConnectedAdd20Regular } from "@fluentui/react-icons";
export function Example() {
return <PlugConnectedAdd20Regular aria-label="Plug Connected Add" />;
}Use the Plug Connected Add 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 { PlugConnectedAdd20Regular, PlugConnectedAdd20Filled } from "@fluentui/react-icons";
export function Example() {
return <PlugConnectedAdd20Regular aria-label="Plug Connected Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_plug_connected_add_20_regular.svg" width="20" height="20" alt="Plug Connected Add"> 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.96 2.3a.5.5 0 0 0-.82-.15l-2.7 2.7a4.04 4.04 0 0 0-5.33.33l-.6.61a1.05 1.05 0 0 0 0 1.49l2.76 2.76q.42-.3.89-.52L9.52 6.88a.5.5 0 0 1 0-.7l.3-.3a3.03 3.03 0 0 1 4.29 0v.02a3 3 0 0 1 .73 3.11q.51.03 1 .16a4 4 0 0 0-.69-3.62l2.7-2.7a.5.5 0 0 0 .11-.54M7.28 8.5l2.77 2.77q-.3.42-.53.88L6.9 9.52a.5.5 0 0 0-.7 0l-.3.3a3.04 3.04 0 0 0 0 4.29h.01a3 3 0 0 0 3.11.73q.03.52.15 1a4 4 0 0 1-3.6-.69l-2.7 2.7a.5.5 0 1 1-.71-.7l2.7-2.7a4.03 4.03 0 0 1 .33-5.34l.3-.3.31-.31a1.05 1.05 0 0 1 1.49 0M17 18.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48m-2.15-6.1a.5.5 0 0 0-.85.36V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5a.5.5 0 0 0-.15-.35"/></svg>Details
| Name | Plug Connected Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_plug_connected_add_20_regular.svg |
| Filled file | ic_fluent_plug_connected_add_20_filled.svg |
| React (Regular) | PlugConnectedAdd20Regular |
| React (Filled) | PlugConnectedAdd20Filled |
| License | MIT (© Microsoft Corporation) |