UNPKG

@astraicons/react

Version:

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

22 lines 1.25 kB
import * as React from "react"; import { forwardRef } from "react"; const FirstAidKitIcon = ({ 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: "M14 2.25c.966 0 1.75.784 1.75 1.75v1.25h1.046c.103-.29.378-.5.704-.5h1c.402 0 .729.316.748.713A3.75 3.75 0 0 1 21.75 9v8a4.75 4.75 0 0 1-3 4.415V6.205a.8.8 0 0 1-.25.045h-1a.8.8 0 0 1-.25-.046v15.54a5 5 0 0 1-.25.006H7q-.126 0-.25-.007V6.204a.7.7 0 0 1-.25.046h-1a.7.7 0 0 1-.25-.046v15.211a4.75 4.75 0 0 1-3-4.415V9a3.75 3.75 0 0 1 2.501-3.537.75.75 0 0 1 .749-.713h1c.326 0 .6.21.704.5H8.25V4c0-.966.784-1.75 1.75-1.75zm-2.002 7.503a.75.75 0 0 0-.75.75v2.25H9a.75.75 0 0 0 0 1.5h2.248v2.25a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.252v-2.25a.75.75 0 0 0-.75-.75M10 3.75a.25.25 0 0 0-.25.25v1.25h4.5V4a.25.25 0 0 0-.25-.25z", clipRule: "evenodd" })); const ForwardRef = forwardRef(FirstAidKitIcon); export default ForwardRef;