UNPKG

@astraicons/react

Version:

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

24 lines 1.3 kB
import * as React from "react"; import { forwardRef } from "react"; const UnequipIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "m19.66 7.436-.013-.254z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M12.954 21.18c-.585.371-1.322.371-1.907 0a24.7 24.7 0 0 1-3.287-2.485c-1.24-1.127-2.51-2.579-3.041-4.18-.383-1.153-.47-2.786-.469-4.217 0-1.089.054-2.14.09-2.863.012-.239.022-.442.028-.598.027-.705.457-1.3 1.062-1.595l5.746-2.791a1.89 1.89 0 0 1 1.65 0l5.745 2.791c.605.294 1.034.89 1.06 1.595.007.156.017.36.03.599.035.722.088 1.773.089 2.862 0 1.431-.086 3.064-.469 4.216-.531 1.602-1.802 3.053-3.04 4.18a24.7 24.7 0 0 1-3.287 2.486M12 6.737a.75.75 0 0 0-.75.75v6.19l-1.182-1.181a.75.75 0 1 0-1.06 1.06l2.026 2.027a1.365 1.365 0 0 0 1.93 0l2.027-2.027a.75.75 0 1 0-1.06-1.06l-1.181 1.18V7.488a.75.75 0 0 0-.75-.75" })); const ForwardRef = forwardRef(UnequipIcon); export default ForwardRef;