ram icon
ram-20-regular from Fluent UI System Icons by Microsoft Corporation · 20 Regular · MIT Free for personal and commercial use.
- Name
- ram-20-regular
- Set
- Fluent UI System Icons
- Style
- 20 Regular
- Viewbox
- 20×20
- License
- MIT
3 other variants in Fluent UI System Icons
The same icon in other sets
Use the ram icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M16.04 4q.39 0 .741.156q.352.157.625.43q.274.273.43.625q.156.351.164.75V11q0 .531-.266 1a1.9 1.9 0 0 1-.734.734V14.5q0 .305-.117.578a1.5 1.5 0 0 1-.805.805q-.28.125-.578.117h-4a.48.48 0 0 1-.352-.148L10 14.703l-1.148 1.149A.48.48 0 0 1 8.5 16h-4q-.305 0-.578-.117a1.5 1.5 0 0 1-.805-.805A1.3 1.3 0 0 1 3 14.5v-1.766A1.93 1.93 0 0 1 2.273 12A2.06 2.06 0 0 1 2 11V5.96q0-.39.156-.741a2.1 2.1 0 0 1 .43-.625a2.1 2.1 0 0 1 .625-.43A1.9 1.9 0 0 1 3.96 4zM17 6a.95.95 0 0 0-.078-.383a1.1 1.1 0 0 0-.211-.32a.9.9 0 0 0-.32-.219A1 1 0 0 0 16 5H4a.97.97 0 0 0-.703.29a1.1 1.1 0 0 0-.219.32A.85.85 0 0 0 3 6v5q0 .21.078.39q.079.18.211.32a.85.85 0 0 0 .313.212q.18.07.398.078h12a.97.97 0 0 0 .703-.29q.133-.132.219-.32A.85.85 0 0 0 17 11zm-2 0a.95.95 0 0 1 .383.078q.18.079.32.211a.9.9 0 0 1 .219.32Q16 6.797 16 7v3a.97.97 0 0 1-.29.703a1.1 1.1 0 0 1-.32.219A.85.85 0 0 1 15 11H5a1 1 0 0 1-.39-.078a1.1 1.1 0 0 1-.32-.211a.85.85 0 0 1-.212-.313A1.2 1.2 0 0 1 4 10V7a.97.97 0 0 1 .29-.703a1.1 1.1 0 0 1 .32-.219A.85.85 0 0 1 5 6zM7.5 7H5v3h2.5zm4 3V7h-3v3zm1 0H15V7h-2.5zm3.5 3H4v1.5q0 .203.148.352A.48.48 0 0 0 4.5 15h3.797l1.351-1.352A.48.48 0 0 1 10 13.5a.48.48 0 0 1 .352.148L11.71 15h3.79a.48.48 0 0 0 .352-.148A.48.48 0 0 0 16 14.5z"/></svg>
React
import type { SVGProps } from "react";
export function FluentRam20Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M16.04 4q.39 0 .741.156q.352.157.625.43q.274.273.43.625q.156.351.164.75V11q0 .531-.266 1a1.9 1.9 0 0 1-.734.734V14.5q0 .305-.117.578a1.5 1.5 0 0 1-.805.805q-.28.125-.578.117h-4a.48.48 0 0 1-.352-.148L10 14.703l-1.148 1.149A.48.48 0 0 1 8.5 16h-4q-.305 0-.578-.117a1.5 1.5 0 0 1-.805-.805A1.3 1.3 0 0 1 3 14.5v-1.766A1.93 1.93 0 0 1 2.273 12A2.06 2.06 0 0 1 2 11V5.96q0-.39.156-.741a2.1 2.1 0 0 1 .43-.625a2.1 2.1 0 0 1 .625-.43A1.9 1.9 0 0 1 3.96 4zM17 6a.95.95 0 0 0-.078-.383a1.1 1.1 0 0 0-.211-.32a.9.9 0 0 0-.32-.219A1 1 0 0 0 16 5H4a.97.97 0 0 0-.703.29a1.1 1.1 0 0 0-.219.32A.85.85 0 0 0 3 6v5q0 .21.078.39q.079.18.211.32a.85.85 0 0 0 .313.212q.18.07.398.078h12a.97.97 0 0 0 .703-.29q.133-.132.219-.32A.85.85 0 0 0 17 11zm-2 0a.95.95 0 0 1 .383.078q.18.079.32.211a.9.9 0 0 1 .219.32Q16 6.797 16 7v3a.97.97 0 0 1-.29.703a1.1 1.1 0 0 1-.32.219A.85.85 0 0 1 15 11H5a1 1 0 0 1-.39-.078a1.1 1.1 0 0 1-.32-.211a.85.85 0 0 1-.212-.313A1.2 1.2 0 0 1 4 10V7a.97.97 0 0 1 .29-.703a1.1 1.1 0 0 1 .32-.219A.85.85 0 0 1 5 6zM7.5 7H5v3h2.5zm4 3V7h-3v3zm1 0H15V7h-2.5zm3.5 3H4v1.5q0 .203.148.352A.48.48 0 0 0 4.5 15h3.797l1.351-1.352A.48.48 0 0 1 10 13.5a.48.48 0 0 1 .352.148L11.71 15h3.79a.48.48 0 0 0 .352-.148A.48.48 0 0 0 16 14.5z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M16.04 4q.39 0 .741.156q.352.157.625.43q.274.273.43.625q.156.351.164.75V11q0 .531-.266 1a1.9 1.9 0 0 1-.734.734V14.5q0 .305-.117.578a1.5 1.5 0 0 1-.805.805q-.28.125-.578.117h-4a.48.48 0 0 1-.352-.148L10 14.703l-1.148 1.149A.48.48 0 0 1 8.5 16h-4q-.305 0-.578-.117a1.5 1.5 0 0 1-.805-.805A1.3 1.3 0 0 1 3 14.5v-1.766A1.93 1.93 0 0 1 2.273 12A2.06 2.06 0 0 1 2 11V5.96q0-.39.156-.741a2.1 2.1 0 0 1 .43-.625a2.1 2.1 0 0 1 .625-.43A1.9 1.9 0 0 1 3.96 4zM17 6a.95.95 0 0 0-.078-.383a1.1 1.1 0 0 0-.211-.32a.9.9 0 0 0-.32-.219A1 1 0 0 0 16 5H4a.97.97 0 0 0-.703.29a1.1 1.1 0 0 0-.219.32A.85.85 0 0 0 3 6v5q0 .21.078.39q.079.18.211.32a.85.85 0 0 0 .313.212q.18.07.398.078h12a.97.97 0 0 0 .703-.29q.133-.132.219-.32A.85.85 0 0 0 17 11zm-2 0a.95.95 0 0 1 .383.078q.18.079.32.211a.9.9 0 0 1 .219.32Q16 6.797 16 7v3a.97.97 0 0 1-.29.703a1.1 1.1 0 0 1-.32.219A.85.85 0 0 1 15 11H5a1 1 0 0 1-.39-.078a1.1 1.1 0 0 1-.32-.211a.85.85 0 0 1-.212-.313A1.2 1.2 0 0 1 4 10V7a.97.97 0 0 1 .29-.703a1.1 1.1 0 0 1 .32-.219A.85.85 0 0 1 5 6zM7.5 7H5v3h2.5zm4 3V7h-3v3zm1 0H15V7h-2.5zm3.5 3H4v1.5q0 .203.148.352A.48.48 0 0 0 4.5 15h3.797l1.351-1.352A.48.48 0 0 1 10 13.5a.48.48 0 0 1 .352.148L11.71 15h3.79a.48.48 0 0 0 .352-.148A.48.48 0 0 0 16 14.5z"/></svg> </template>
CSS
.icon-ram-20-regular {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.04%204q.39%200%20.741.156q.352.157.625.43q.274.273.43.625q.156.351.164.75V11q0%20.531-.266%201a1.9%201.9%200%200%201-.734.734V14.5q0%20.305-.117.578a1.5%201.5%200%200%201-.805.805q-.28.125-.578.117h-4a.48.48%200%200%201-.352-.148L10%2014.703l-1.148%201.149A.48.48%200%200%201%208.5%2016h-4q-.305%200-.578-.117a1.5%201.5%200%200%201-.805-.805A1.3%201.3%200%200%201%203%2014.5v-1.766A1.93%201.93%200%200%201%202.273%2012A2.06%202.06%200%200%201%202%2011V5.96q0-.39.156-.741a2.1%202.1%200%200%201%20.43-.625a2.1%202.1%200%200%201%20.625-.43A1.9%201.9%200%200%201%203.96%204zM17%206a.95.95%200%200%200-.078-.383a1.1%201.1%200%200%200-.211-.32a.9.9%200%200%200-.32-.219A1%201%200%200%200%2016%205H4a.97.97%200%200%200-.703.29a1.1%201.1%200%200%200-.219.32A.85.85%200%200%200%203%206v5q0%20.21.078.39q.079.18.211.32a.85.85%200%200%200%20.313.212q.18.07.398.078h12a.97.97%200%200%200%20.703-.29q.133-.132.219-.32A.85.85%200%200%200%2017%2011zm-2%200a.95.95%200%200%201%20.383.078q.18.079.32.211a.9.9%200%200%201%20.219.32Q16%206.797%2016%207v3a.97.97%200%200%201-.29.703a1.1%201.1%200%200%201-.32.219A.85.85%200%200%201%2015%2011H5a1%201%200%200%201-.39-.078a1.1%201.1%200%200%201-.32-.211a.85.85%200%200%201-.212-.313A1.2%201.2%200%200%201%204%2010V7a.97.97%200%200%201%20.29-.703a1.1%201.1%200%200%201%20.32-.219A.85.85%200%200%201%205%206zM7.5%207H5v3h2.5zm4%203V7h-3v3zm1%200H15V7h-2.5zm3.5%203H4v1.5q0%20.203.148.352A.48.48%200%200%200%204.5%2015h3.797l1.351-1.352A.48.48%200%200%201%2010%2013.5a.48.48%200%200%201%20.352.148L11.71%2015h3.79a.48.48%200%200%200%20.352-.148A.48.48%200%200%200%2016%2014.5z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.04%204q.39%200%20.741.156q.352.157.625.43q.274.273.43.625q.156.351.164.75V11q0%20.531-.266%201a1.9%201.9%200%200%201-.734.734V14.5q0%20.305-.117.578a1.5%201.5%200%200%201-.805.805q-.28.125-.578.117h-4a.48.48%200%200%201-.352-.148L10%2014.703l-1.148%201.149A.48.48%200%200%201%208.5%2016h-4q-.305%200-.578-.117a1.5%201.5%200%200%201-.805-.805A1.3%201.3%200%200%201%203%2014.5v-1.766A1.93%201.93%200%200%201%202.273%2012A2.06%202.06%200%200%201%202%2011V5.96q0-.39.156-.741a2.1%202.1%200%200%201%20.43-.625a2.1%202.1%200%200%201%20.625-.43A1.9%201.9%200%200%201%203.96%204zM17%206a.95.95%200%200%200-.078-.383a1.1%201.1%200%200%200-.211-.32a.9.9%200%200%200-.32-.219A1%201%200%200%200%2016%205H4a.97.97%200%200%200-.703.29a1.1%201.1%200%200%200-.219.32A.85.85%200%200%200%203%206v5q0%20.21.078.39q.079.18.211.32a.85.85%200%200%200%20.313.212q.18.07.398.078h12a.97.97%200%200%200%20.703-.29q.133-.132.219-.32A.85.85%200%200%200%2017%2011zm-2%200a.95.95%200%200%201%20.383.078q.18.079.32.211a.9.9%200%200%201%20.219.32Q16%206.797%2016%207v3a.97.97%200%200%201-.29.703a1.1%201.1%200%200%201-.32.219A.85.85%200%200%201%2015%2011H5a1%201%200%200%201-.39-.078a1.1%201.1%200%200%201-.32-.211a.85.85%200%200%201-.212-.313A1.2%201.2%200%200%201%204%2010V7a.97.97%200%200%201%20.29-.703a1.1%201.1%200%200%201%20.32-.219A.85.85%200%200%201%205%206zM7.5%207H5v3h2.5zm4%203V7h-3v3zm1%200H15V7h-2.5zm3.5%203H4v1.5q0%20.203.148.352A.48.48%200%200%200%204.5%2015h3.797l1.351-1.352A.48.48%200%200%201%2010%2013.5a.48.48%200%200%201%20.352.148L11.71%2015h3.79a.48.48%200%200%200%20.352-.148A.48.48%200%200%200%2016%2014.5z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/ram-20-regular.svg?color=%231a73e8&size=48