Document Contract icon
Used to represent a contract. The Document Contract icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. 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_contract_16_regular.svg
Document Contract icon in React
npm install @fluentui/react-icons
import { DocumentContract16Regular } from "@fluentui/react-icons";
export function Example() {
return <DocumentContract16Regular aria-label="Document Contract" />;
}Use the Document Contract 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 { DocumentContract16Regular, DocumentContract16Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentContract16Regular aria-label="Document Contract" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_contract_16_regular.svg" width="16" height="16" alt="Document Contract"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="m7.2 10.5.65-.65a.5.5 0 1 0-.7-.7l-.65.64-.65-.64a.5.5 0 1 0-.7.7l.64.65-.64.65a.5.5 0 0 0 .7.7l.65-.64.65.64a.5.5 0 1 0 .7-.7zM3.6 1.59A2 2 0 0 1 5 1h3.59q.61.01 1.06.44l2.91 2.91c.28.29.44.67.44 1.06V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3a2 2 0 0 1 .59-1.41M12 11V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-1H9.5a.5.5 0 0 1 0-1zM9.5 5h2.3L9 2.2v2.3a.5.5 0 0 0 .5.5"/></svg>Details
| Name | Document Contract |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_document_contract_16_regular.svg |
| Filled file | ic_fluent_document_contract_16_filled.svg |
| React (Regular) | DocumentContract16Regular |
| React (Filled) | DocumentContract16Filled |
| License | MIT (© Microsoft Corporation) |