Document Markdown icon
The Document Markdown icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_document_markdown_16_regular.svg
Document Markdown icon in React
npm install @fluentui/react-icons
import { DocumentMarkdown16Regular } from "@fluentui/react-icons";
export function Example() {
return <DocumentMarkdown16Regular aria-label="Document Markdown" />;
}Use the Document Markdown 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 { DocumentMarkdown16Regular, DocumentMarkdown16Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentMarkdown16Regular aria-label="Document Markdown" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_markdown_20_regular.svg" width="20" height="20" alt="Document Markdown"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6.62 12.01a.5.5 0 0 1 .38.49v5a.5.5 0 0 1-1 0v-2.88l-1.55 3.1a.5.5 0 0 1-.9 0L2 14.62v2.88a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 .95-.22L4 16.38l.03-.06 2.02-4.04a.5.5 0 0 1 .57-.27M10.5 12c.28 0 .5.22.5.5v3.8l1.15-1.15a.5.5 0 1 1 .7.7l-2 2-.11.09a.5.5 0 0 1-.34.05l-.14-.05-.11-.09-2-2a.5.5 0 1 1 .7-.7L10 16.29V12.5c0-.28.22-.5.5-.5m.09-10c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-1.88l1-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v8.15l-1 2V4c0-1.1.9-2 2-2zM11 6.5c0 .28.22.5.5.5h3.3L11 3.2z"/></svg>Details
| Name | Document Markdown |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_document_markdown_20_regular.svg |
| Filled file | ic_fluent_document_markdown_20_filled.svg |
| React (Regular) | DocumentMarkdown16Regular, DocumentMarkdown20Regular |
| React (Filled) | DocumentMarkdown16Filled, DocumentMarkdown20Filled |
| License | MIT (© Microsoft Corporation) |