@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.22 kB
JavaScript
(function(global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory(require("@elf-framework/sapa"), require("../components/SvgIcon")) : typeof define === "function" && define.amd ? define(["@elf-framework/sapa", "../components/SvgIcon"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, global["icons/InventoryOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const InventoryOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "Inventory", "theme": "outlined", "icon": { "tag": "svg", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [{ "tag": "path", "attributes": { "d": "M5 5h2v3h10V5h2v5h2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M21 11.5 15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" }, "children": [] }] } }, props);
};
InventoryOutlined.displayName = "InventoryOutlined";
return InventoryOutlined;
});