UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

36 lines 1.57 kB
const React = require("react"); const { forwardRef } = require("react"); const TreasureIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M3 12a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v5.5a3.5 3.5 0 0 1-3.5 3.5h-11A3.5 3.5 0 0 1 3 17.5z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, d: "M12 16a1 1 0 1 0 0-2 1 1 0 0 0 0 2M12 16v2" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m4.5 11-.722-3.371A3 3 0 0 1 6.71 4h10.578a3 3 0 0 1 2.933 3.629L19.5 11M10 4l.707-.6a2 2 0 0 1 2.586 0L14 4" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M6 10.235s.367-1.08 1.09-1.28c.403-.11.688.106 1.092 0 .571-.148.52-.703 1.09-.852.405-.105.687.105 1.092 0 .571-.15.5-.76 1.09-.853.21-.033.546 0 .546 0M18 10.235s-.367-1.076-1.09-1.275c-.403-.11-.688.105-1.092 0-.571-.148-.52-.702-1.09-.85-.405-.105-.687.105-1.092 0-.571-.149-.5-.758-1.09-.85a1.5 1.5 0 0 0-.546 0" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3.75 15.25h2.5M17.75 15.25h2.5" })); const ForwardRef = forwardRef(TreasureIcon); module.exports = ForwardRef;