UNPKG

@astraicons/react

Version:

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

36 lines 1.13 kB
const React = require("react"); const { forwardRef } = require("react"); const FirstAidKitIcon = ({ 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", d: "M17.5 5.5h1M18 6v14M6 6v14M5.5 5.5h1" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M9 5.5V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1.5", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 13.503h6m-3.002 3v-6", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7 21h10a4 4 0 0 0 4-4V9a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a4 4 0 0 0 4 4Z", opacity: 0.4 })); const ForwardRef = forwardRef(FirstAidKitIcon); module.exports = ForwardRef;