@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.63 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/PetsFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const PetsFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "Pets", "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": "4.5", "cy": "9.5", "r": "2.5" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "9", "cy": "5.5", "r": "2.5" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "15", "cy": "5.5", "r": "2.5" }, "children": [] }, { "tag": "circle", "attributes": { "cx": "19.5", "cy": "9.5", "r": "2.5" }, "children": [] }, { "tag": "path", "attributes": { "d": "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" }, "children": [] }] } }, props);
};
PetsFilled.displayName = "PetsFilled";
return PetsFilled;
});