@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.65 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/AdminPanelSettingsOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const AdminPanelSettingsOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "AdminPanelSettings", "theme": "outlined", "icon": { "tag": "svg", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [{ "tag": "g", "attributes": { "fill-rule": "evenodd" }, "children": [{ "tag": "circle", "attributes": { "cx": "17", "cy": "15.5", "r": "1.12" }, "children": [] }, { "tag": "path", "attributes": { "d": "M17 17.5c-.73 0-2.19.36-2.24 1.08.5.71 1.32 1.17 2.24 1.17s1.74-.46 2.24-1.17c-.05-.72-1.51-1.08-2.24-1.08z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M18 11.09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55A5.973 5.973 0 0 0 17 23c3.31 0 6-2.69 6-6 0-2.97-2.16-5.43-5-5.91zM11 17c0 .56.08 1.11.23 1.62-.24.11-.48.22-.73.3-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4 5.5 2.4v3.51c-2.84.48-5 2.94-5 5.91zm6 4c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" }, "children": [] }] }] } }, props);
};
AdminPanelSettingsOutlined.displayName = "AdminPanelSettingsOutlined";
return AdminPanelSettingsOutlined;
});