Document Person icon
Used to represent shared file types and actions. The Document Person 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_person_16_regular.svg
Document Person icon in React
npm install @fluentui/react-icons
import { DocumentPerson16Regular } from "@fluentui/react-icons";
export function Example() {
return <DocumentPerson16Regular aria-label="Document Person" />;
}Use the Document Person 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 { DocumentPerson16Regular, DocumentPerson16Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentPerson16Regular aria-label="Document Person" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_person_20_regular.svg" width="20" height="20" alt="Document Person"> 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 2a2 2 0 0 0-2 2v5.04a3 3 0 0 1 1 0V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H8.96q-.08.52-.33 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2zm-8.3 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0M8 16.5C8 17.75 7 19 4.5 19S1 17.75 1 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5"/></svg>Details
| Name | Document Person |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_document_person_20_regular.svg |
| Filled file | ic_fluent_document_person_20_filled.svg |
| React (Regular) | DocumentPerson16Regular, DocumentPerson20Regular |
| React (Filled) | DocumentPerson16Filled, DocumentPerson20Filled |
| License | MIT (© Microsoft Corporation) |