Rhombus icon

Used to represent rhombus shaped content or shape in canvas editing scenarios. The Rhombus 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.

Regular (outlined)

SVG

Filled

SVG

Use the Rhombus 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 { Rhombus24Regular, Rhombus24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Rhombus24Regular aria-label="Rhombus" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_rhombus_24_regular.svg" width="24" height="24" alt="Rhombus">

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="M5.80718 5.4079C6.15057 4.55709 6.97616 4 7.89365 4H20.752C22.3468 4 23.4353 5.61323 22.8385 7.09209L18.1971 18.5921C17.8537 19.4429 17.0281 20 16.1106 20H3.25225C1.65747 20 0.5689 18.3868 1.16577 16.9079L5.80718 5.4079ZM7.89365 5.5C7.58782 5.5 7.31262 5.6857 7.19816 5.9693L2.55675 17.4693C2.3578 17.9623 2.72065 18.5 3.25225 18.5H16.1106C16.4165 18.5 16.6917 18.3143 16.8061 18.0307L21.4475 6.5307C21.6464 6.03774 21.2836 5.5 20.752 5.5H7.89365Z" 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/rhombus_24_regular.svg";

Details

NameRhombus
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_rhombus_24_regular.svg
Filled fileic_fluent_rhombus_24_filled.svg
React componentsRhombus24Regular, Rhombus24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

slidesquareshape

Related icons