UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.15 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/AttachmentOutlined"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const AttachmentOutlined = (props = {}) => { return SvgIcon.SvgIcon({ "name": "Attachment", "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": "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5a2.5 2.5 0 0 1 0 5H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9a2.5 2.5 0 0 0 0 5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" }, "children": [] }] } }, props); }; AttachmentOutlined.displayName = "AttachmentOutlined"; return AttachmentOutlined; });