Document Chevron Double icon
Used to represent general file types and actions. The Document Chevron Double 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.
Use the Document Chevron Double 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 { DocumentChevronDouble24Regular, DocumentChevronDouble24Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentChevronDouble24Regular aria-label="Document Chevron Double" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_chevron_double_24_regular.svg" width="24" height="24" alt="Document Chevron Double"> 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 20C18.5 20.275 18.276 20.5 18 20.5H12.2678C11.9806 21.051 11.6168 21.5557 11.1904 22H18C19.104 22 20 21.104 20 20V9.828C20 9.298 19.789 8.789 19.414 8.414L13.585 2.586C13.2194 2.22035 12.6865 2 12.172 2H6C4.896 2 4 2.896 4 4V11.4982C4.47417 11.3004 4.97679 11.1572 5.5 11.0764V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20ZM13.5 4.621L17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621ZM6.5 23C3.46243 23 1 20.5376 1 17.5C1 14.4624 3.46243 12 6.5 12C9.53757 12 12 14.4624 12 17.5C12 20.5376 9.53757 23 6.5 23ZM5.35355 15.3536C5.54882 15.1583 5.54882 14.8417 5.35355 14.6464C5.15829 14.4512 4.84171 14.4512 4.64645 14.6464L2.14645 17.1464C1.95118 17.3417 1.95118 17.6583 2.14645 17.8536L4.64645 20.3536C4.84171 20.5488 5.15829 20.5488 5.35355 20.3536C5.54882 20.1583 5.54882 19.8417 5.35355 19.6464L3.20711 17.5L5.35355 15.3536ZM7.64645 14.6464C7.45118 14.8417 7.45118 15.1583 7.64645 15.3536L9.79289 17.5L7.64645 19.6464C7.45118 19.8417 7.45118 20.1583 7.64645 20.3536C7.84171 20.5488 8.15829 20.5488 8.35355 20.3536L10.8536 17.8536C11.0488 17.6583 11.0488 17.3417 10.8536 17.1464L8.35355 14.6464C8.15829 14.4512 7.84171 14.4512 7.64645 14.6464Z" 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_chevron_double_24_regular.svg";Details
| Name | Document Chevron Double |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_document_chevron_double_24_regular.svg |
| Filled file | ic_fluent_document_chevron_double_24_filled.svg |
| React components | DocumentChevronDouble24Regular, DocumentChevronDouble24Filled |
| License | MIT (© Microsoft Corporation) |