Document Table Search icon
Used to represent table file types and actions. The Document Table 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 Table 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 { DocumentTableSearch24Regular, DocumentTableSearch24Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentTableSearch24Regular aria-label="Document Table Search" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_table_search_24_regular.svg" width="24" height="24" alt="Document Table 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="M15.25 11.5C16.2165 11.5 17 12.2835 17 13.25V17.25C17 18.2165 16.2165 19 15.25 19H10.4749L10.4253 18.9504C10.7931 18.2126 11 17.3805 11 16.5C11 15.3226 10.63 14.2316 10 13.3369V13H9.74284C9.2826 12.4427 8.71468 11.9776 8.07094 11.6366C8.27974 11.5486 8.50919 11.5 8.75 11.5H15.25ZM11.5 16V17.5H15.25C15.3881 17.5 15.5 17.3881 15.5 17.25V16H11.5ZM15.5 14.5V13.25C15.5 13.1119 15.3881 13 15.25 13H11.5V14.5H15.5ZM18 20.5H11.9749L12.4874 21.0126C12.7654 21.2905 12.9303 21.6387 12.9822 22H18C19.104 22 20 21.104 20 20V9.828C20 9.298 19.789 8.789 19.414 8.414L13.585 2.586C13.2277 2.22867 12.6729 2 12.172 2H6C4.896 2 4 2.896 4 4V11.207C4.47683 11.0722 4.97999 11 5.5 11V4C5.5 3.725 5.724 3.5 6 3.5H12V8C12 9.104 12.896 10 14 10H18.5V20C18.5 20.275 18.276 20.5 18 20.5ZM17.378 8.5H14C13.724 8.5 13.5 8.275 13.5 8V4.621L17.378 8.5ZM5.5 21C6.47187 21 7.37179 20.6919 8.1074 20.1681L10.7197 22.7803C11.0126 23.0732 11.4874 23.0732 11.7803 22.7803C12.0732 22.4874 12.0732 22.0126 11.7803 21.7197L9.16806 19.1074C9.69191 18.3718 10 17.4719 10 16.5C10 14.0147 7.98528 12 5.5 12C3.01472 12 1 14.0147 1 16.5C1 18.9853 3.01472 21 5.5 21ZM5.5 19.5C3.84315 19.5 2.5 18.1569 2.5 16.5C2.5 14.8431 3.84315 13.5 5.5 13.5C7.15685 13.5 8.5 14.8431 8.5 16.5C8.5 18.1569 7.15685 19.5 5.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_table_search_24_regular.svg";Details
| Name | Document Table Search |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_document_table_search_24_regular.svg |
| Filled file | ic_fluent_document_table_search_24_filled.svg |
| React components | DocumentTableSearch24Regular, DocumentTableSearch24Filled |
| License | MIT (© Microsoft Corporation) |