UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.33 kB
(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/OfflineShareOutlined"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const OfflineShareOutlined = (props = {}) => { return SvgIcon.SvgIcon({ "name": "OfflineShare", "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": "M6 5H4v16c0 1.1.9 2 2 2h10v-2H6V5z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16h-8v-1h8v1zm0-3h-8V6h8v8zm0-10h-8V3h8v1z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M12.5 10.25h1.63l-.69.69L14.5 12 17 9.5 14.5 7l-1.06 1.06.69.69H12c-.55 0-1 .45-1 1V12h1.5v-1.75z" }, "children": [] }] } }, props); }; OfflineShareOutlined.displayName = "OfflineShareOutlined"; return OfflineShareOutlined; });