UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.49 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/StreamFilled"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const StreamFilled = (props = {}) => { return SvgIcon.SvgIcon({ "name": "Stream", "theme": "filled", "icon": { "tag": "svg", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [{ "tag": "circle", "attributes": { "cx": "20", "cy": "12", "r": "2" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "4", "cy": "12", "r": "2" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "12", "cy": "20", "r": "2" }, "children": [] }, { "tag": "path", "attributes": { "d": "M10.05 8.59 6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027 4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "12", "cy": "4", "r": "2" }, "children": [] }] } }, props); }; StreamFilled.displayName = "StreamFilled"; return StreamFilled; });