@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.22 kB
JavaScript
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",
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: "M9.778 13.86a.74.74 0 0 1 1.014-.262 2.55 2.55 0 0 0 2.549.023.74.74 0 0 1 1.01.279l3.24 5.719a.743.743 0 0 1-.28 1.01 10.61 10.61 0 0 1-10.61-.092.743.743 0 0 1-.262-1.015zM12.07 9.5a1.93 1.93 0 1 1 0 3.86 1.93 1.93 0 0 1 0-3.86"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.428 2.461a.74.74 0 0 1 1.014-.261 10.61 10.61 0 0 1 5.225 9.228.74.74 0 0 1-.748.735l-6.578-.057a.74.74 0 0 1-.735-.748 2.55 2.55 0 0 0-1.254-2.22.74.74 0 0 1-.263-1.013zM6.833 2.108a.74.74 0 0 1 1.01.28l3.24 5.719a.74.74 0 0 1-.28 1.009 2.55 2.55 0 0 0-1.293 2.198.74.74 0 0 1-.748.734l-6.578-.056a.74.74 0 0 1-.735-.748 10.61 10.61 0 0 1 5.384-9.136"
}));
const ForwardRef = forwardRef(RadioactivityIcon);
module.exports = ForwardRef;