USB Plug icon
Used to represent physical usb connections in plug form. Minor difference with USB Stick. The USB Plug icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the USB Plug 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 { UsbPlug24Regular, UsbPlug24Filled } from "@fluentui/react-icons";
export function Example() {
return <UsbPlug24Regular aria-label="USB Plug" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_usb_plug_24_regular.svg" width="24" height="24" alt="USB Plug"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 21.2483C11 21.6625 10.6642 21.9983 10.25 21.9983C9.8703 21.9983 9.55651 21.7161 9.50684 21.35L9.5 21.2483L9.49914 16.9991L8.75414 16.9998C7.56327 16.9998 6.58849 16.0746 6.50933 14.9038L6.50414 14.7498V9.24978C6.50414 8.26529 7.13643 7.42848 8.01707 7.12329L8.01647 2.74707C8.01647 2.36737 8.29862 2.05358 8.6647 2.00392L8.76647 1.99707H15.2673C15.6469 1.99707 15.9607 2.27922 16.0104 2.6453L16.0173 2.74707L16.0176 7.13263C16.8335 7.42689 17.4304 8.17932 17.4978 9.07937L17.5041 9.24978V14.7498C17.5041 15.9406 16.579 16.9154 15.4082 16.9946L15.2541 16.9998L14.4991 16.9991L14.5001 21.2453C14.5001 21.6595 14.1643 21.9953 13.7501 21.9953C13.3704 21.9953 13.0566 21.7131 13.0069 21.347L13.0001 21.2453L12.9991 16.9991H10.9991L11 21.2483ZM15.2541 8.49978H8.75414C8.37444 8.49978 8.06064 8.78194 8.01098 9.14801L8.00414 9.24978V14.7498C8.00414 15.1295 8.28629 15.4433 8.65236 15.4929L8.75414 15.4998L13.7501 15.4968L13.7931 15.4991L15.2541 15.4998C15.6338 15.4998 15.9476 15.2176 15.9973 14.8516L16.0041 14.7498V9.24978C16.0041 8.87009 15.722 8.55629 15.3559 8.50663L15.2541 8.49978ZM14.517 3.49678H9.516V6.99878H14.517V3.49678Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/usb_plug_24_regular.svg";Details
| Name | USB Plug |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_usb_plug_24_regular.svg |
| Filled file | ic_fluent_usb_plug_24_filled.svg |
| React components | UsbPlug24Regular, UsbPlug24Filled |
| License | MIT (© Microsoft Corporation) |