UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.5 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/StreamOutlined"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const StreamOutlined = (props = {}) => { return SvgIcon.SvgIcon({ "name": "Stream", "theme": "outlined", "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": "m13.943 8.619 4.404-4.392 1.413 1.416-4.405 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "12", "cy": "4", "r": "2" }, "children": [] }] } }, props); }; StreamOutlined.displayName = "StreamOutlined"; return StreamOutlined; });