UNPKG

@elf-framework/icon

Version:

Icon library for sapa that use material icons

11 lines (10 loc) 1.19 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/ThumbUpOffAltOutlined"] = factory(global.sapa, global.SvgIcon)); })(this, function(sapa, SvgIcon) { "use strict"; const ThumbUpOffAltOutlined = (props = {}) => { return SvgIcon.SvgIcon({ "name": "ThumbUpOffAlt", "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": "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1V9z" }, "children": [] }] } }, props); }; ThumbUpOffAltOutlined.displayName = "ThumbUpOffAltOutlined"; return ThumbUpOffAltOutlined; });