Shopping Bag Add icon
Used in retail shopping scenarios. The Shopping Bag Add 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 Shopping Bag Add 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 { ShoppingBagAdd24Regular, ShoppingBagAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <ShoppingBagAdd24Regular aria-label="Shopping Bag Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_shopping_bag_add_24_regular.svg" width="24" height="24" alt="Shopping Bag Add"> 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="M7 7V5C7 3.34315 8.34315 2 10 2C10.7684 2 11.4692 2.28886 12 2.7639C12.5308 2.28885 13.2317 2 14 2C15.6569 2 17 3.34315 17 5V7H18.5C19.3284 7 20 7.67157 20 8.5V11.4982C19.5258 11.3004 19.0232 11.1572 18.5 11.0764V8.5H14.51V11.727C13.9592 12.0129 13.4545 12.3752 13.01 12.8V8.5H5.5V18C5.5 19.3807 6.61929 20.5 8 20.5H11.7322C12.0194 21.051 12.3832 21.5557 12.8096 22H8C5.79086 22 4 20.2091 4 18V8.5C4 7.67157 4.67157 7 5.5 7H7ZM11.5 7V5C11.5 4.17157 10.8284 3.5 10 3.5C9.17157 3.5 8.5 4.17157 8.5 5V7H11.5ZM13 7H15.5V5C15.5 4.17157 14.8284 3.5 14 3.5C13.535 3.5 13.1195 3.71156 12.8444 4.04368C12.9453 4.34403 13 4.66563 13 5V7ZM17.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM18.0011 20.5035L18.0006 18H20.4966C20.7725 18 20.9961 17.7762 20.9961 17.5C20.9961 17.2239 20.7725 17 20.4966 17H18.0005L18 14.4993C18 14.2231 17.7761 13.9993 17.5 13.9993C17.2239 13.9993 17 14.2231 17 14.4993L17.0005 17H14.4956C14.2197 17 13.9961 17.2239 13.9961 17.5C13.9961 17.7762 14.2197 18 14.4956 18H17.0006L17.0011 20.5035C17.0011 20.7797 17.225 21.0035 17.5011 21.0035C17.7773 21.0035 18.0011 20.7797 18.0011 20.5035Z" 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/shopping_bag_add_24_regular.svg";Details
| Name | Shopping Bag Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_shopping_bag_add_24_regular.svg |
| Filled file | ic_fluent_shopping_bag_add_24_filled.svg |
| React components | ShoppingBagAdd24Regular, ShoppingBagAdd24Filled |
| License | MIT (© Microsoft Corporation) |