@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.32 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/UnfoldLessDoubleFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const UnfoldLessDoubleFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "UnfoldLessDouble", "theme": "filled", "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": "M16.58 1.41 15.16 0l-3.17 3.17L8.82 0 7.41 1.41 11.99 6z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M16.58 6.41 15.16 5l-3.17 3.17L8.82 5 7.41 6.41 11.99 11zM7.42 17.59 8.84 19l3.17-3.17L15.18 19l1.41-1.41L12.01 13z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M7.42 22.59 8.84 24l3.17-3.17L15.18 24l1.41-1.41L12.01 18z" }, "children": [] }] } }, props);
};
UnfoldLessDoubleFilled.displayName = "UnfoldLessDoubleFilled";
return UnfoldLessDoubleFilled;
});