UNPKG

@astraicons/react

Version:

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

27 lines 1.07 kB
import * as React from "react"; import { forwardRef } from "react"; const EquipIcon = ({ 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: "m14.462 10.06-2.026-2.026a.615.615 0 0 0-.87 0L9.538 10.06M12 15.6V8.214" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M18.57 14.389c-.94 2.831-4.612 5.378-6.018 6.269-.34.215-.764.215-1.104 0-1.406-.891-5.079-3.438-6.018-6.269-.68-2.053-.362-6.09-.312-7.413.015-.407.264-.766.64-.948l5.745-2.792c.314-.152.68-.152.994 0l5.746 2.792c.376.182.624.541.64.948.05 1.323.367 5.36-.314 7.413Z" })); const ForwardRef = forwardRef(EquipIcon); export default ForwardRef;