@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 978 B
JavaScript
const React = require("react");
function EventIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M15 3H9m8 0c2.761 0 5 2.127 5 4.75v7.719C22 19.076 18.922 22 15.125 22h-6.25C5.078 22 2 19.076 2 15.469V7.75C2 5.127 4.239 3 7 3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m9 12.5 1.998 2.5L15 10"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8 4V2M16 4V2"
}));
}
const ForwardRef = React.forwardRef(EventIcon);
module.exports = ForwardRef;