@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.11 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/CloudUploadFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const CloudUploadFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "CloudUpload", "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": "M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" }, "children": [] }] } }, props);
};
CloudUploadFilled.displayName = "CloudUploadFilled";
return CloudUploadFilled;
});