@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.21 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/AutofpsSelectFilled"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const AutofpsSelectFilled = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "AutofpsSelect", "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": "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" }, "children": [] }] } }, props);
};
AutofpsSelectFilled.displayName = "AutofpsSelectFilled";
return AutofpsSelectFilled;
});