UNPKG

@astraicons/react

Version:

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

37 lines 1.24 kB
const React = require("react"); const { forwardRef } = require("react"); const P2PIcon = ({ 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("circle", { cx: 7, cy: 4.5, r: 1.5, opacity: 0.4 }), /*#__PURE__*/React.createElement("circle", { cx: 17, cy: 11.5, r: 1.5, opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M16 4s2.78-.525 4 1c.976 1.22 1 2 1 2m-5-2-1-1 1-1M8 20s-2.78.525-4-1c-.976-1.22-1-2-1-2m5 2 1 1-1 1", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M3 10.182C3 8.977 3.895 8 5 8h4c1.105 0 2 .977 2 2.182V11c0 1.657-1.231 3-2.75 3h-2.5C4.231 14 3 12.657 3 11zM13 17.182c0-1.205.895-2.182 2-2.182h4c1.105 0 2 .977 2 2.182V18c0 1.657-1.231 3-2.75 3h-2.5C14.231 21 13 19.657 13 18z" })); const ForwardRef = forwardRef(P2PIcon); module.exports = ForwardRef;