@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.37 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const NuclearPowerPlantIcon = ({
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: "M1.998 21.001H22"
}), /*#__PURE__*/React.createElement("path", {
d: "M21.001 21.001 18.403 8.01A2.5 2.5 0 0 0 15.95 6h-4.88a2.5 2.5 0 0 0-2.456 2.035L7.579 13.5 6 21M3 21l1.394-9.713A1.5 1.5 0 0 1 5.88 10h.871c.505 0 .96.303 1.154.77L8 11"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M14 3v1m-3-.5V4m6-.5V4m-1.465 10.06h.87a.6.6 0 0 1 .581.727 3.56 3.56 0 0 1-1.147 1.954.59.59 0 0 1-.888-.166l-.438-.76m-2.026 0-.438.76a.59.59 0 0 1-.888.166 3.56 3.56 0 0 1-1.147-1.954.6.6 0 0 1 .581-.727h.87m1.02-1.795-.44-.76a.59.59 0 0 1 .298-.851 3.54 3.54 0 0 1 2.31 0 .59.59 0 0 1 .298.851l-.439.76m.489 1.776a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0",
opacity: 0.4
}));
const ForwardRef = forwardRef(NuclearPowerPlantIcon);
module.exports = ForwardRef;