@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
33 lines • 1.36 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ApisIcon = ({
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: "m6.264 10.715 7.367 7.397M8.105 12.564l2.307-2.307"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m10.879 6.108 7.358 7.388"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m11.8 7.025 1.922-1.923a2.494 2.494 0 0 1 3.532.003l1.998 2.005a2.506 2.506 0 0 1-.004 3.54l-1.923 1.923M18.252 6.108 20.43 3.93M6.722 12.1 4.8 14.024a2.506 2.506 0 0 0-.004 3.539l1.998 2.005c.974.978 2.555.98 3.532.003l1.923-1.923M3.615 20.744l2.178-2.178M4.432 18.736l1.157 1.043M18.435 4.737 19.59 5.78M11.79 16.263l2.305-2.307"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m17.023 17.34 1 3 1-2 1 3M3.023 4.84 5.39 6.936l-.134-2.232 2.367 2.098",
opacity: 0.4
}));
const ForwardRef = forwardRef(ApisIcon);
module.exports = ForwardRef;