UNPKG

@astraicons/react

Version:

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

26 lines 888 B
const React = require("react"); const { forwardRef } = require("react"); const GhostIcon = ({ 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", { d: "M12 21c-2.132 0-2.965-3.845-6.059-.996-.343.315-.941.095-.941-.371V9.569C5 5.94 8.134 3 12 3s7 2.94 7 6.569v10.064c0 .466-.598.686-.941.37C14.965 17.156 14.132 21 12 21Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M14 9.5V8M10 9.5V8", opacity: 0.4 })); const ForwardRef = forwardRef(GhostIcon); module.exports = ForwardRef;