Save Copy icon
Used to represent saving content. Needs rename - Add Square Multiple (has 16 & 20 if needed). The Save Copy 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 Save Copy 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 { SaveCopy24Regular, SaveCopy24Filled } from "@fluentui/react-icons";
export function Example() {
return <SaveCopy24Regular aria-label="Save Copy" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_save_copy_24_regular.svg" width="24" height="24" alt="Save Copy"> 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="M3.50382 5.62668C2.62793 5.93448 2 6.76891 2 7.75V17.75C2 20.0972 3.90279 22 6.25 22H16.25C17.2311 22 18.0655 21.3721 18.3733 20.4962L16.276 20.4996L6.25 20.5C4.73122 20.5 3.5 19.2688 3.5 17.75V7.75L3.50398 7.69902L3.50382 5.62668ZM6.75319 2C5.51055 2 4.50319 3.00736 4.50319 4.25V17.2468C4.50319 18.4895 5.51055 19.4968 6.75319 19.4968H19.75C20.9926 19.4968 22 18.4895 22 17.2468V4.25C22 3.00736 20.9926 2 19.75 2H6.75319ZM6.75319 3.5H19.75C20.1642 3.5 20.5 3.83579 20.5 4.25V17.2468C20.5 17.661 20.1642 17.9968 19.75 17.9968H6.75319C6.33897 17.9968 6.00319 17.661 6.00319 17.2468V4.25C6.00319 3.83579 6.33897 3.5 6.75319 3.5ZM13.25 6.75C12.8358 6.75 12.5 7.08579 12.5 7.5V10H10C9.58579 10 9.25 10.3358 9.25 10.75C9.25 11.1642 9.58579 11.5 10 11.5H12.5V14C12.5 14.4142 12.8358 14.75 13.25 14.75C13.6642 14.75 14 14.4142 14 14V11.5H16.5C16.9142 11.5 17.25 11.1642 17.25 10.75C17.25 10.3358 16.9142 10 16.5 10H14V7.5C14 7.08579 13.6642 6.75 13.25 6.75Z" 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/save_copy_24_regular.svg";Details
| Name | Save Copy |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_save_copy_24_regular.svg |
| Filled file | ic_fluent_save_copy_24_filled.svg |
| React components | SaveCopy24Regular, SaveCopy24Filled |
| License | MIT (© Microsoft Corporation) |