UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.26 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/MoreTimeFilled"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const MoreTimeFilled = (props = {}) => { return SvgIcon.SvgIcon({ "name": "MoreTime", "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": "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M17.92 12A6.957 6.957 0 0 1 11 20c-3.9 0-7-3.1-7-7s3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9a8.963 8.963 0 0 0 8.94-10h-2.02z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" }, "children": [] }] } }, props); }; MoreTimeFilled.displayName = "MoreTimeFilled"; return MoreTimeFilled; });