Port USB A icon
Used to represent physical connection ports in devices. The Port USB A 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 Port USB A 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 { PortUsbA24Regular, PortUsbA24Filled } from "@fluentui/react-icons";
export function Example() {
return <PortUsbA24Regular aria-label="Port USB A" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_port_usb_a_24_regular.svg" width="24" height="24" alt="Port USB A"> 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="M18 8H6C5.47004 8.00155 4.96223 8.21276 4.5875 8.5875C4.21276 8.96223 4.00155 9.47004 4 10V14C4.00156 14.53 4.21277 15.0378 4.58751 15.4125C4.96224 15.7872 5.47005 15.9984 6 16H18C18.53 15.9984 19.0378 15.7872 19.4125 15.4125C19.7872 15.0378 19.9984 14.53 20 14V10C19.9985 9.47004 19.7872 8.96223 19.4125 8.5875C19.0378 8.21276 18.53 8.00155 18 8V8ZM5.5 10C5.49935 9.93416 5.51183 9.86885 5.53673 9.80789C5.56162 9.74693 5.59843 9.69155 5.64499 9.64499C5.69155 9.59843 5.74693 9.56162 5.80789 9.53673C5.86885 9.51183 5.93416 9.49935 6 9.5H18C18.0658 9.49935 18.1312 9.51183 18.1921 9.53673C18.2531 9.56162 18.3084 9.59843 18.355 9.64499C18.4016 9.69155 18.4384 9.74693 18.4633 9.80789C18.4882 9.86885 18.5007 9.93416 18.5 10V12H5.5V10Z" 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/port_usb_a_24_regular.svg";Details
| Name | Port USB A |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_port_usb_a_24_regular.svg |
| Filled file | ic_fluent_port_usb_a_24_filled.svg |
| React components | PortUsbA24Regular, PortUsbA24Filled |
| License | MIT (© Microsoft Corporation) |