UNPKG

@astraicons/react

Version:

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

27 lines 962 B
const React = require("react"); const { forwardRef } = require("react"); const TicketIcon = ({ 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", d: "M3 7v10a4 4 0 0 0 4 4h5a2 2 0 0 0 2-2v-1a1 1 0 1 1 2 0v1a2 2 0 0 0 2 2h.5a2.5 2.5 0 0 0 2.5-2.5v-13A2.5 2.5 0 0 0 18.5 3H18a2 2 0 0 0-2 2v1a1 1 0 1 1-2 0V5a2 2 0 0 0-2-2H7a4 4 0 0 0-4 4Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M15 11V9M15 15v-2M6.75 10.25h4.5M6.75 13.25h1.5", opacity: 0.4 })); const ForwardRef = forwardRef(TicketIcon); module.exports = ForwardRef;