Download a free Rocket.Chat SVG icon. Customize the color and size, copy the HTML code, or download as SVG/PNG for your website or app.
Downloading a single Rocket.Chat icon is just the beginning. With our free icon set creator, you can build a complete library of SVG icons tailored to your project.
Mix and match from hundreds of icons, customize size and color, then generate a single embed script to drop into your site. This saves time, reduces asset bloat, and keeps your design system consistent.
Add this Rocket.Chat SVG to a set and embed on your sitedisplay: none
or visibility: hidden
). Verify the file path is correct if using PNG/SVG files, and clear your browser cache to see updates.
width="32px" height="32px"
attributes to the <svg>
tag or use CSS like svg { width: 32px; height: 32px; }
. For PNG icons, use CSS: img { width: 32px; height: 32px; }
. SVG icons scale perfectly at any size.
svg { fill: #1DA1F2; }
or svg { color: #1DA1F2; }
. PNG icons have fixed colors and cannot be changed. This is why SVG is recommended for customization flexibility.
<svg width="48px" height="48px">
or use CSS: .my-icon { width: 48px; height: 48px; }
. For PNG icons, use CSS: img.icon { width: 48px; height: 48px; }
. SVG icons scale perfectly without quality loss.
text-align: center;
for center, float: left;
for left, float: right;
for right. For flexbox: display: flex; justify-content: center;
(center), justify-content: flex-start;
(left), or justify-content: flex-end;
(right).
svg { max-width: 100%; height: auto; }
. Use relative units (em, %) instead of fixed pixels. Test on actual devices and consider larger touch targets (minimum 44px) for better usability.
<object data="icon.svg"><img src="icon.png" alt="Rocket.Chat"></object>
.
<img src="icon.png" alt="Rocket.Chat social media link">
for PNG, or <title>Rocket.Chat icon</title>
inside SVG tags. Use aria-label
on links: <a href="#" aria-label="Follow us on Rocket.Chat">
.