UNPKG

@astraicons/react

Version:

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

20 lines 1.12 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", 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", { d: "M11.176 2.45a1.89 1.89 0 0 1 1.65 0l5.745 2.792c.605.295 1.034.89 1.06 1.595l.03.6c.035.721.088 1.772.089 2.86 0 1.432-.086 3.064-.469 4.217-.531 1.602-1.802 3.053-3.04 4.18a24.7 24.7 0 0 1-3.287 2.487c-.585.37-1.322.37-1.907 0a25 25 0 0 1-3.287-2.486c-1.24-1.128-2.51-2.578-3.041-4.18-.383-1.153-.47-2.785-.469-4.217 0-1.088.054-2.14.09-2.862q.018-.362.028-.599c.027-.705.456-1.3 1.062-1.595zM11.25 9.3v6.19a.75.75 0 0 0 1.5 0V9.298l1.182 1.182a.75.75 0 0 0 1.06-1.06l-2.026-2.027-.104-.094a1.366 1.366 0 0 0-1.723 0l-.104.094L9.01 9.419a.75.75 0 0 0 1.06 1.06z" })); const ForwardRef = forwardRef(EquipIcon); export default ForwardRef;