@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 953 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const EventIcon = ({
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",
strokeLinejoin: "round",
d: "m9 12.75 1.998 2.5 4.002-5",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M21 15.597V8.263c0-2.492-2-4.46-5-4.46L8 3.75c-3 .053-5 2.02-5 4.513v7.334m18-6.516V17c0 2.624-2.015 4.751-4.5 4.751h-9C5.015 21.75 3 19.623 3 17v-4.751M8 5.25v-3M16 5.25v-3"
}));
const ForwardRef = forwardRef(EventIcon);
module.exports = ForwardRef;