@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.13 kB
JavaScript
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",
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: "M2.25 17A4.75 4.75 0 0 0 7 21.75h5A2.75 2.75 0 0 0 14.75 19v-1a.25.25 0 0 1 .5 0v1A2.75 2.75 0 0 0 18 21.75h.5a3.25 3.25 0 0 0 3.25-3.25v-13a3.25 3.25 0 0 0-3.25-3.25H18A2.75 2.75 0 0 0 15.25 5v1a.25.25 0 1 1-.5 0V5A2.75 2.75 0 0 0 12 2.25H7A4.75 4.75 0 0 0 2.25 7zM15 11.75a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-1.5 0v2c0 .414.336.75.75.75m.75 3.25a.75.75 0 0 1-1.5 0v-2a.75.75 0 1 1 1.5 0zM6 10.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m.75 2.25a.75.75 0 1 0 0 1.5h1.5a.75.75 0 0 0 0-1.5z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(TicketIcon);
module.exports = ForwardRef;