@elf-framework/icon
Version:
Icon library for sapa that use material icons
11 lines (10 loc) • 1.33 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/PlagiarismOutlined"] = factory(global.sapa, global.SvgIcon));
})(this, function(sapa, SvgIcon) {
"use strict";
const PlagiarismOutlined = (props = {}) => {
return SvgIcon.SvgIcon({ "name": "Plagiarism", "theme": "outlined", "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": "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M9.03 11.03a3.495 3.495 0 0 0 0 4.95 3.48 3.48 0 0 0 4.13.59l1.88 1.88 1.41-1.41-1.88-1.88c.71-1.33.53-3.01-.59-4.13a3.495 3.495 0 0 0-4.95 0zm3.53 3.53c-.59.59-1.54.59-2.12 0a1.49 1.49 0 0 1 0-2.12 1.49 1.49 0 0 1 2.12 0c.59.59.59 1.53 0 2.12z" }, "children": [] }] } }, props);
};
PlagiarismOutlined.displayName = "PlagiarismOutlined";
return PlagiarismOutlined;
});