Slide Multiple Search icon
Used in slide ui scenarios. The Slide Multiple 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 Slide Multiple 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 { SlideMultipleSearch24Regular, SlideMultipleSearch24Filled } from "@fluentui/react-icons";
export function Example() {
return <SlideMultipleSearch24Regular aria-label="Slide Multiple Search" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_slide_multiple_search_24_regular.svg" width="24" height="24" alt="Slide Multiple 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="M6.75 3C4.12665 3 2 5.12665 2 7.75V12.2572C2.44631 11.8886 2.95177 11.589 3.5 11.3749V7.75C3.5 5.95507 4.95507 4.5 6.75 4.5H16.75C17.1642 4.5 17.5 4.83579 17.5 5.25V5.5H19V5.25C19 4.00736 17.9926 3 16.75 3H6.75ZM19.75 20.5H11.9749L10.4749 19H19.75C20.1642 19 20.5 18.6642 20.5 18.25V8.75C20.5 8.33579 20.1642 8 19.75 8H7.75C7.33579 8 7 8.33579 7 8.75V11.207C6.52317 11.0722 6.02001 11 5.5 11V8.75C5.5 7.50736 6.50736 6.5 7.75 6.5H19.75C20.9926 6.5 22 7.50736 22 8.75V18.25C22 19.4926 20.9926 20.5 19.75 20.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/slide_multiple_search_24_regular.svg";Details
| Name | Slide Multiple Search |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_slide_multiple_search_24_regular.svg |
| Filled file | ic_fluent_slide_multiple_search_24_filled.svg |
| React components | SlideMultipleSearch24Regular, SlideMultipleSearch24Filled |
| License | MIT (© Microsoft Corporation) |