@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.4 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/SpatialTrackingFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const SpatialTrackingFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "SpatialTracking", "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": "10", "cy": "9", "r": "4" }, "children": [] }, { "tag": "path", "attributes": { "d": "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 0 0 2 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zm3.66-13.15L18.64 1c-3.51 3.51-3.51 9.21 0 12.73l1.41-1.41c-2.73-2.74-2.73-7.18 0-9.91z" }, "children": [] }, { "tag": "path", "attributes": { "d": "m22.88 5.24-1.41-1.41a5.003 5.003 0 0 0 0 7.07l1.41-1.41a3.012 3.012 0 0 1 0-4.25z" }, "children": [] }] } }, props);
};
SpatialTrackingFilled.displayName = "SpatialTrackingFilled";
return SpatialTrackingFilled;
});