UNPKG

@astraicons/react

Version:

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

30 lines 975 B
const React = require("react"); const { forwardRef } = require("react"); const ActivityIcon = ({ 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: "m8.4 13.35 1.859-2.582a.18.18 0 0 1 .275-.02l2.421 2.507a.18.18 0 0 0 .274-.018l1.921-2.587" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M14.5 3h-7A4.5 4.5 0 0 0 3 7.5v9A4.5 4.5 0 0 0 7.5 21h9a4.5 4.5 0 0 0 4.5-4.5V9.188" }), /*#__PURE__*/React.createElement("circle", { cx: 18.75, cy: 5.25, r: 1.35 })); const ForwardRef = forwardRef(ActivityIcon); module.exports = ForwardRef;