UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.28 kB
(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/AutoDeleteOutlined"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const AutoDeleteOutlined = (props = {}) => { return SvgIcon.SvgIcon({ "name": "AutoDelete", "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": "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68A6.999 6.999 0 0 0 23 16c0-3.87-3.13-7-7-7zm-7 7c0 .34.03.67.08 1H4V7h8v3.26c-1.81 1.27-3 3.36-3 5.74zm7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" }, "children": [] }, { "tag": "path", "attributes": { "d": "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" }, "children": [] }] } }, props); }; AutoDeleteOutlined.displayName = "AutoDeleteOutlined"; return AutoDeleteOutlined; });