@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.11 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/AirplanemodeActiveOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const AirplanemodeActiveOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "AirplanemodeActive", "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": "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" }, "children": [] }] } }, props);
};
AirplanemodeActiveOutlined.displayName = "AirplanemodeActiveOutlined";
return AirplanemodeActiveOutlined;
});