@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.19 kB
JavaScript
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M13.35 3c.728 0 1.309.69 1.35 1.499.055 1.122.259 2.61.9 3.501.726 1.008 2.334 1.2 3.608 1.175C20.148 9.155 21 9.956 21 11v4.5c0 3.038-2.216 5.5-4.95 5.5h-8.1C5.216 21 3 18.538 3 15.5v-7C3 5.462 5.216 3 7.95 3zm2.203 6.897c-.3-.246-.722-.177-.945.156a2.163 2.163 0 0 1-3.43.216l-.159-.181c-.37-.426-.998-.376-1.309.104l-1.857 2.87c-.218.336-.15.804.153 1.046.302.242.724.167.942-.17a2.093 2.093 0 0 1 3.337-.235l.184.212c.367.422.987.377 1.302-.094l1.92-2.874c.223-.332.16-.803-.138-1.05",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M19 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4"
}));
const ForwardRef = forwardRef(ActivityIcon);
module.exports = ForwardRef;