UNPKG

@astraicons/react

Version:

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

28 lines 1.09 kB
const React = require("react"); const { forwardRef } = require("react"); const RadioactivityIcon = ({ 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", { fill: "#4e5964", d: "M12.07 10.241a1.19 1.19 0 1 1 0 2.379 1.19 1.19 0 0 1 0-2.379Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m10.438 8.471-3.24-5.719a9.87 9.87 0 0 0-5.008 8.499l6.579.057a3.29 3.29 0 0 1 1.67-2.837m-.021 5.766-3.339 5.662a9.87 9.87 0 0 0 9.868.085l-3.24-5.719a3.29 3.29 0 0 1-3.29-.028m3.31-5.737 3.34-5.662a9.87 9.87 0 0 1 4.86 8.584l-6.58-.057a3.29 3.29 0 0 0-1.62-2.865", opacity: 0.4 })); const ForwardRef = forwardRef(RadioactivityIcon); module.exports = ForwardRef;