@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.75 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const BlockchainIcon = ({
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", {
d: "m12 7.216 3.556-2.156M12 7.216 8.342 5.129M12 7.216v3.664M8.342 5.129l-.12-.069m.12.069a2.53 2.53 0 0 1 1.01-1.013l1.555-.838a2.29 2.29 0 0 1 2.186 0l1.556.838C15.477 4.563 16 5.475 16 6.473v1.055c0 .998-.523 1.91-1.351 2.356l-1.556.838c-.688.37-1.498.37-2.186 0L9.35 9.884C8.523 9.437 8 8.525 8 7.527V6.473c0-.483.122-.945.342-1.344ZM6 17.216l3.556-2.156M6 17.216l-3.658-2.087M6 17.216v3.664m-3.658-5.751-.12-.069m.12.069a2.53 2.53 0 0 1 1.01-1.012l1.555-.839a2.29 2.29 0 0 1 2.186 0l1.556.838c.828.447 1.351 1.359 1.351 2.357v1.055c0 .998-.523 1.91-1.351 2.356l-1.556.838c-.688.37-1.498.37-2.186 0l-1.556-.838C2.523 19.437 2 18.525 2 17.527v-1.054c0-.483.122-.945.342-1.344ZM18 17.216l3.556-2.156M18 17.216l-3.658-2.087M18 17.216v3.664m-3.658-5.751-.12-.069m.12.069a2.53 2.53 0 0 1 1.01-1.012l1.555-.839a2.29 2.29 0 0 1 2.186 0l1.556.838c.828.447 1.351 1.359 1.351 2.357v1.055c0 .998-.523 1.91-1.351 2.356l-1.556.838c-.688.37-1.498.37-2.186 0l-1.556-.838C14.523 19.437 14 18.525 14 17.527v-1.054c0-.483.122-.945.342-1.344Z"
}), /*#__PURE__*/React.createElement("path", {
d: "m7.5 13.5 2-3.5M10 17.5h4.5M17 13.5 15 10",
opacity: 0.4
}));
const ForwardRef = forwardRef(BlockchainIcon);
module.exports = ForwardRef;