UNPKG

@astraicons/react

Version:

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

24 lines 1.13 kB
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", 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", { d: "M7.25 5.25v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0M15.25 5.25v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M14.25 3.041V5.25a1.75 1.75 0 1 0 3.5 0V3.272c2.406.634 4 2.573 4 4.992v8.735c0 3-2.313 5.501-5.25 5.501h-9c-2.937 0-5.25-2.502-5.25-5.501V8.264c0-2.422 1.596-4.357 4-5.019V5.25a1.75 1.75 0 1 0 3.5 0V3.01zm1.219 6.373a.75.75 0 0 0-1.055.117L10.998 13.8l-1.412-1.767a.75.75 0 0 0-1.172.936l1.998 2.5a.75.75 0 0 0 1.171 0l4.003-5a.75.75 0 0 0-.117-1.054", clipRule: "evenodd" })); const ForwardRef = forwardRef(EventIcon); module.exports = ForwardRef;