UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

60 lines (58 loc) 2.6 kB
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function WrappedGiftIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 72 72", fill: "currentColor", "aria-hidden": "true", ref: svgRef, width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "#D22F27", d: "M51.024 14.021c-1.67-3.009-3.671-4.534-5.948-4.534-2.62 0-5.341 2.063-8.09 6.133A36.494 36.494 0 0036 17.165a35.896 35.896 0 00-.986-1.545c-2.748-4.07-5.47-6.133-8.09-6.133-2.276 0-4.278 1.525-5.948 4.534-1.248 2.252-1.145 4.02-.548 4.979 1.077 1.73 3.83 2.745 7.704 3.411 2.975.513 6.122.589 7.734.589h.269c1.611 0 4.759-.076 7.733-.589 3.873-.666 6.626-1.682 7.704-3.411.595-.96.701-2.727-.548-4.979z" }), /*#__PURE__*/React.createElement("path", { fill: "#FCEA2B", d: "M16 36h39v25H16z" }), /*#__PURE__*/React.createElement("path", { fill: "#f1b31c", d: "M53.39 35.5L17 35.558v5.5l27.143 3.929L55 46.5V35.558z" }), /*#__PURE__*/React.createElement("path", { fill: "#EA5A47", d: "M29.714 60h12.572V44.273l-12.572-2.487z" }), /*#__PURE__*/React.createElement("path", { fill: "#FCEA2B", d: "M14 21h44v14H14z" }), /*#__PURE__*/React.createElement("path", { fill: "#EA5A47", d: "M29.714 22h12.571v13H29.714z" }), /*#__PURE__*/React.createElement("path", { fill: "#D22F27", d: "M42.286 35.5l-12.572.02v7.354l12.572 1.833z" }), /*#__PURE__*/React.createElement("g", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 2 }, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M54.091 21.357H17.356M17.356 21.357H14V35.5h2.357v25.143h39.286V35.5H58V21.357h-3.909M16.357 35.5h40.072M50.961 18.25c.384-.98.492-2.393-.49-4.229-1.608-3.009-3.536-4.534-5.728-4.534-2.525 0-5.146 2.063-7.794 6.133a36.644 36.644 0 00-.95 1.545 36.02 36.02 0 00-.949-1.545c-2.647-4.07-5.269-6.133-7.793-6.133-2.193 0-4.12 1.525-5.73 4.534-.901 1.69-.883 3.021-.574 3.987" }), /*#__PURE__*/React.createElement("path", { d: "M42.286 60V44.273M29.714 41.786V60M42.286 35V22M29.714 22v13M42.286 44.707V35.5l-12.572.02v7.354" }))); } const ForwardRef = React.forwardRef(WrappedGiftIcon); module.exports = ForwardRef;