@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.16 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/RssFeedOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const RssFeedOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "RssFeed", "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": "6.18", "cy": "17.82", "r": "2.18" }, "children": [] }, { "tag": "path", "attributes": { "d": "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" }, "children": [] }] } }, props);
};
RssFeedOutlined.displayName = "RssFeedOutlined";
return RssFeedOutlined;
});