Document Search icon
Used to represent general file types and actions. The Document Search 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 Search 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 { DocumentSearch24Regular, DocumentSearch24Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentSearch24Regular aria-label="Document Search" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_search_24_regular.svg" width="24" height="24" alt="Document Search"> 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="M4 4C4 2.89543 4.89543 2 6 2H12.1722C12.7027 2 13.2114 2.21071 13.5864 2.58579L19.4142 8.41355C19.7893 8.78863 20 9.29733 20 9.82777V20C20 21.1046 19.1046 22 18 22H13.9822C13.9303 21.6387 13.7654 21.2905 13.4874 21.0126L12.9749 20.5H18C18.2761 20.5 18.5 20.2761 18.5 20V10H14C12.8954 10 12 9.10457 12 8V3.5H6C5.72386 3.5 5.5 3.72386 5.5 4V11.0907C4.96945 11.1881 4.46553 11.3617 4 11.5997V4ZM14 8.5H17.3793L13.5 4.62066V8C13.5 8.27614 13.7239 8.5 14 8.5ZM6.5 21C7.47187 21 8.37179 20.6919 9.1074 20.1681L11.7197 22.7803C12.0126 23.0732 12.4874 23.0732 12.7803 22.7803C13.0732 22.4874 13.0732 22.0126 12.7803 21.7197L10.1681 19.1074C10.6919 18.3718 11 17.4719 11 16.5C11 14.0147 8.98528 12 6.5 12C4.01472 12 2 14.0147 2 16.5C2 18.9853 4.01472 21 6.5 21ZM6.5 19.5C4.84315 19.5 3.5 18.1569 3.5 16.5C3.5 14.8431 4.84315 13.5 6.5 13.5C8.15685 13.5 9.5 14.8431 9.5 16.5C9.5 18.1569 8.15685 19.5 6.5 19.5Z" 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_search_24_regular.svg";Details
| Name | Document Search |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_document_search_24_regular.svg |
| Filled file | ic_fluent_document_search_24_filled.svg |
| React components | DocumentSearch24Regular, DocumentSearch24Filled |
| License | MIT (© Microsoft Corporation) |