UNPKG

@astraicons/react

Version:

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

31 lines 942 B
const React = require("react"); const { forwardRef } = require("react"); const BiohazardIcon = ({ 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: "M13.89 3.995a4.016 4.016 0 1 1-3.892 0" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3.464 15.799a4.016 4.016 0 1 1 2.752 2.752M17.784 18.55a4.016 4.016 0 1 1 2.752-2.752" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 11.995, r: 4.25, opacity: 0.4 })); const ForwardRef = forwardRef(BiohazardIcon); module.exports = ForwardRef;