Receipt Bag icon
Used to represent a receipt, purchase order, line items or an invoice. The Receipt Bag 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 Receipt Bag 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 { ReceiptBag24Regular, ReceiptBag24Filled } from "@fluentui/react-icons";
export function Example() {
return <ReceiptBag24Regular aria-label="Receipt Bag" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_receipt_bag_24_regular.svg" width="24" height="24" alt="Receipt Bag"> 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.25 3C5.00736 3 4 4.00736 4 5.25V9.53549C4.16331 9.51213 4.33026 9.50004 4.50003 9.50004C4.84681 9.50005 5.18264 9.55075 5.5 9.64526V5.25C5.5 4.83579 5.83579 4.5 6.25 4.5H15.75C16.1642 4.5 16.5 4.83579 16.5 5.25V19.5H11.5V20.75C11.5 20.8341 11.4968 20.9175 11.4905 21H18.75C20.5449 21 22 19.5449 22 17.75V14H18V5.25C18 4.00736 16.9926 3 15.75 3H6.25ZM10.4647 12.5H13.75C14.1642 12.5 14.5 12.1642 14.5 11.75C14.5 11.3358 14.1642 11 13.75 11H9.87276C10.1779 11.4375 10.3857 11.948 10.4647 12.5ZM18.75 19.5H18V15.5H20.5V17.75C20.5 18.7165 19.7165 19.5 18.75 19.5ZM7.5 7.75C7.5 7.33579 7.83579 7 8.25 7H13.75C14.1642 7 14.5 7.33579 14.5 7.75C14.5 8.16421 14.1642 8.5 13.75 8.5H8.25C7.83579 8.5 7.5 8.16421 7.5 7.75ZM1 14.75C1 14.3358 1.33579 14 1.75 14H2V13C2 11.6193 3.1193 10.5 4.50002 10.5C4.95538 10.5 5.3823 10.6218 5.75002 10.8345C6.11776 10.6218 6.54471 10.5 7.00011 10.5C8.38082 10.5 9.50011 11.6193 9.50011 13V14H9.75C10.1642 14 10.5 14.3358 10.5 14.75V20.75C10.5 21.9927 9.49264 23 8.25 23H3.25C2.00736 23 1 21.9927 1 20.75V14.75ZM7 13V14H8.00011V13C8.00011 12.4477 7.55239 12 7.00011 12C6.93177 12 6.86504 12.0069 6.80056 12.0199C6.92895 12.3209 7 12.6522 7 13ZM5.5 14V13C5.5 12.4478 5.05229 12 4.50001 12C3.94772 12 3.5 12.4478 3.5 13V14H5.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/receipt_bag_24_regular.svg";Details
| Name | Receipt Bag |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_receipt_bag_24_regular.svg |
| Filled file | ic_fluent_receipt_bag_24_filled.svg |
| React components | ReceiptBag24Regular, ReceiptBag24Filled |
| License | MIT (© Microsoft Corporation) |