Document Ribbon icon

Used to represent general file types and actions. The Document Ribbon 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 Document Ribbon 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 { DocumentRibbon24Regular, DocumentRibbon24Filled } from "@fluentui/react-icons";

export function Example() {
  return <DocumentRibbon24Regular aria-label="Document Ribbon" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_document_ribbon_24_regular.svg" width="24" height="24" alt="Document Ribbon">

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="M18.5 20.0023C18.5 20.2774 18.276 20.5024 18 20.5024H9V22.0026H18C19.104 22.0026 20 21.1065 20 20.0023V9.82901C20 9.29894 19.789 8.78987 19.414 8.41483L13.585 2.58608C13.2194 2.22039 12.6865 2 12.172 2H6C4.896 2 4 2.89612 4 4.00026V11.2573C4.46917 11.0914 4.97405 11.0012 5.5 11.0012V4.00026C5.5 3.72522 5.724 3.50019 6 3.50019H12V8.00077C12 9.10492 12.896 10.001 14 10.001H18.5V20.0023ZM13.5 4.62134L17.378 8.50084H14C13.724 8.50084 13.5 8.27581 13.5 8.00077V4.62134ZM9 15.5017C9 17.435 7.433 19.0022 5.5 19.0022C3.567 19.0022 2 17.435 2 15.5017C2 13.5685 3.567 12.0013 5.5 12.0013C7.433 12.0013 9 13.5685 9 15.5017ZM3 19.2444V22.2885C3 22.9211 3.76477 23.2379 4.21204 22.7906L5.5 21.5025L6.78795 22.7906C7.23523 23.2379 8 22.9211 8 22.2885V19.2444C7.28495 19.7231 6.42507 20.0023 5.5 20.0023C4.57493 20.0023 3.71505 19.7231 3 19.2444Z" 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/document_ribbon_24_regular.svg";

Details

NameDocument Ribbon
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_document_ribbon_24_regular.svg
Filled fileic_fluent_document_ribbon_24_filled.svg
React componentsDocumentRibbon24Regular, DocumentRibbon24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

paperworkfileanaloghorizontal

Related icons