UNPKG

@astraicons/react

Version:

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

29 lines 1.26 kB
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.24 10.376 7.368 7.397M8.082 12.225l2.306-2.307" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m10.856 5.769 7.358 7.388" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m11.776 6.686 1.923-1.924a2.494 2.494 0 0 1 3.532.004l1.997 2.005a2.506 2.506 0 0 1-.003 3.54L17.3 12.233M18.229 5.769l2.177-2.178M6.699 11.76l-1.923 1.924a2.506 2.506 0 0 0-.004 3.54l1.997 2.005c.975.978 2.556.98 3.532.003l1.924-1.923M3.592 20.405l2.178-2.178M4.409 18.397l1.156 1.043M18.411 4.398l1.156 1.043M11.766 15.923l2.306-2.306M17 17l1 3 1-2 1 3M3 4.5l2.366 2.098-.134-2.232 2.366 2.098" })); const ForwardRef = forwardRef(ApisIcon); module.exports = ForwardRef;