@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.36 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/LinkedCameraFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const LinkedCameraFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "LinkedCamera", "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": "12", "cy": "14", "r": "3.2" }, "children": [] }, { "tag": "path", "attributes": { "d": "M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6" }, "children": [] }, { "tag": "path", "attributes": { "d": "M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" }, "children": [] }] } }, props);
};
LinkedCameraFilled.displayName = "LinkedCameraFilled";
return LinkedCameraFilled;
});