@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.25 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/FactCheckOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const FactCheckOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "FactCheck", "theme": "outlined", "icon": { "tag": "svg", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [{ "tag": "g", "attributes": { "fill-rule": "evenodd" }, "children": [{ "tag": "path", "attributes": { "d": "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z" }, "children": [] }] }] } }, props);
};
FactCheckOutlined.displayName = "FactCheckOutlined";
return FactCheckOutlined;
});