RAM icon
Used to represent short term memory in devices in a physical or metaphorical way. The RAM icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. 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, 16 px
ic_fluent_ram_16_regular.svg
RAM icon in React
npm install @fluentui/react-icons
import { Ram16Regular } from "@fluentui/react-icons";
export function Example() {
return <Ram16Regular aria-label="RAM" />;
}Use the RAM 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 { Ram16Regular, Ram16Filled } from "@fluentui/react-icons";
export function Example() {
return <Ram16Regular aria-label="RAM" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_ram_20_regular.svg" width="20" height="20" alt="RAM"> 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="M16.04 4q.39 0 .74.16A2.1 2.1 0 0 1 18 5.96V11a2 2 0 0 1-1 1.73v1.77a1.5 1.5 0 0 1-.44 1.05q-.2.21-.48.33-.28.14-.58.12h-4a.5.5 0 0 1-.35-.15L10 14.7l-1.15 1.15q-.14.15-.35.15h-4a1.5 1.5 0 0 1-1.05-.44q-.21-.2-.33-.48A1.3 1.3 0 0 1 3 14.5v-1.77q-.45-.26-.73-.73A2 2 0 0 1 2 11V5.96q0-.38.16-.74A2.1 2.1 0 0 1 3.96 4zM17 6a1 1 0 0 0-.08-.38 1 1 0 0 0-.2-.32A1 1 0 0 0 16 5H3.99a1 1 0 0 0-.7.29q-.14.14-.22.32A1 1 0 0 0 3 6v5q0 .2.08.4.08.17.2.31.15.14.32.21T4 12h12a1 1 0 0 0 .7-.29q.14-.14.22-.32A1 1 0 0 0 17 11zm-2 0q.2 0 .38.08t.32.2q.15.14.22.33A1 1 0 0 1 16 7v3a1 1 0 0 1-.29.7q-.14.14-.32.22A1 1 0 0 1 15 11H5a1 1 0 0 1-.4-.08 1 1 0 0 1-.31-.2 1 1 0 0 1-.21-.32A1 1 0 0 1 4 10V7a1 1 0 0 1 .29-.7q.14-.14.32-.22A1 1 0 0 1 5 6zM7.5 7H5v3h2.5zm4 3V7h-3v3zm1 0H15V7h-2.5zm3.5 3H4v1.5q0 .2.15.35t.35.15h3.8l1.35-1.35q.14-.15.35-.15t.35.15L11.71 15h3.79q.2 0 .35-.15t.15-.35z"/></svg>Details
| Name | RAM |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_ram_20_regular.svg |
| Filled file | ic_fluent_ram_20_filled.svg |
| React (Regular) | Ram16Regular, Ram20Regular |
| React (Filled) | Ram16Filled, Ram20Filled |
| License | MIT (© Microsoft Corporation) |