@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.26 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Icon3D = ({
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", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.044 6.026 15.07 3M6.043 5.921s3.01-1.546 5.456-1.5c2.304.043 6.544 1.605 6.544 1.605M6.068 18l2.974 3.026m9.027-2.921s-3.01 1.547-5.456 1.5C10.309 19.564 6.07 18 6.07 18"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7 10.25v-.194c0-.86.696-1.556 1.556-1.556h.777c.86 0 1.556.696 1.556 1.556v.194c0 .86-.697 1.556-1.556 1.556h-.777l1.18.316c.68.182 1.153.798 1.153 1.502v.32c0 .86-.697 1.556-1.556 1.556h-.777C7.696 15.5 7 14.804 7 13.944v-.388M12.889 15.5v-7h3.11c.86 0 1.556.696 1.556 1.556v3.888c0 .86-.696 1.556-1.555 1.556z",
opacity: 0.4
}));
const ForwardRef = forwardRef(Icon3D);
module.exports = ForwardRef;