@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.09 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const UnequipIcon = ({
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: "m9.537 13.268 2.026 2.026c.24.24.63.24.87 0l2.027-2.026M12 7.728v7.385",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M18.57 14.52c-.94 2.83-4.612 5.377-6.018 6.268-.34.216-.764.216-1.104 0-1.406-.89-5.079-3.437-6.018-6.268-.68-2.053-.362-6.09-.312-7.413.015-.407.264-.766.64-.949l5.745-2.791c.314-.153.68-.153.994 0l5.746 2.791c.376.183.624.541.64.949.05 1.322.367 5.36-.314 7.412Z"
}));
const ForwardRef = forwardRef(UnequipIcon);
module.exports = ForwardRef;