System icon
Used to represent generic system shapes. The System 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 System 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 { System24Regular, System24Filled } from "@fluentui/react-icons";
export function Example() {
return <System24Regular aria-label="System" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_system_24_regular.svg" width="24" height="24" alt="System"> 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="M4.75 5H19.25C20.7688 5 22 6.23121 22 7.75V16.25C22 17.7688 20.7688 19 19.25 19H4.75C3.23121 19 2 17.7688 2 16.25V7.75C2 6.23122 3.23122 5 4.75 5ZM4.75 6.5C4.05964 6.5 3.5 7.05964 3.5 7.75V16.25C3.5 16.9404 4.05963 17.5 4.75 17.5H19.25C19.9404 17.5 20.5 16.9404 20.5 16.25V7.75C20.5 7.05963 19.9404 6.5 19.25 6.5H4.75Z" 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/system_24_regular.svg";Details
| Name | System |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_system_24_regular.svg |
| Filled file | ic_fluent_system_24_filled.svg |
| React components | System24Regular, System24Filled |
| License | MIT (© Microsoft Corporation) |