Save Search icon
Used to represent saving content. Before using review if necessary. Floppy disc is old concept. Try a more dynamic save experience with motion and a checkmark or other UI. The Save Search icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 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, 20 px
ic_fluent_save_search_20_regular.svg
Save Search icon in React
npm install @fluentui/react-icons
import { SaveSearch20Regular } from "@fluentui/react-icons";
export function Example() {
return <SaveSearch20Regular aria-label="Save Search" />;
}Use the Save 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 { SaveSearch20Regular, SaveSearch20Filled } from "@fluentui/react-icons";
export function Example() {
return <SaveSearch20Regular aria-label="Save Search" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_save_search_20_regular.svg" width="20" height="20" alt="Save Search"> 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="M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2h-2.88l-1-1H14v-4.5a.5.5 0 0 0-.5-.5h-3.26a5 5 0 0 0-.91-1h4.17c.83 0 1.5.67 1.5 1.5V16a1 1 0 0 0 1-1V6.62a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v4.76a5 5 0 0 0-1 .91zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4zm3 9.5c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L8.6 16.3q-.9.68-2.1.7a3.5 3.5 0 1 1 3.5-3.5m-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0"/></svg>Details
| Name | Save Search |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_save_search_20_regular.svg |
| Filled file | ic_fluent_save_search_20_filled.svg |
| React (Regular) | SaveSearch20Regular |
| React (Filled) | SaveSearch20Filled |
| License | MIT (© Microsoft Corporation) |