UNPKG

@astraicons/react

Version:

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

25 lines 1.1 kB
import * as React from "react"; function ActivityIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M16.5 21h-9A5.5 5.5 0 0 1 2 15.5v-7A5.5 5.5 0 0 1 7.5 3h6c.81 0 1.455.69 1.5 1.499.062 1.122.288 2.61 1 3.501.807 1.008 2.594 1.2 4.01 1.175C21.052 9.155 22 9.956 22 11v4.5a5.5 5.5 0 0 1-5.5 5.5m-7.891-7.062a.75.75 0 0 1-1.218-.876zm1.68-2.335 2.232 2.312a.95.95 0 0 0 1.446-.093l2.135-2.874a.75.75 0 0 0-1.204-.895l-1.748 2.353-2.24-2.318a.95.95 0 0 0-1.454.105l-2.065 2.869 1.218.876z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M22 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0" })); } const ForwardRef = React.forwardRef(ActivityIcon); export default ForwardRef;