UNPKG

@astraicons/react

Version:

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

22 lines 1.21 kB
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", 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: "M4.25 9.569C4.25 5.482 7.765 2.25 12 2.25s7.75 3.232 7.75 7.319v10.064c0 .596-.394 1.013-.823 1.178-.422.163-.968.12-1.376-.256-.709-.652-1.188-.827-1.5-.85-.299-.022-.586.086-.951.342-.185.13-.369.283-.578.46l-.052.044c-.187.158-.396.335-.612.495-.475.352-1.086.704-1.858.704s-1.383-.352-1.858-.704c-.216-.16-.425-.337-.612-.495l-.052-.045a8 8 0 0 0-.578-.459c-.365-.256-.652-.364-.952-.342-.311.023-.79.198-1.499.85a1.33 1.33 0 0 1-1.376.256c-.43-.165-.823-.582-.823-1.178zM14 7.25a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V8a.75.75 0 0 1 .75-.75M10.75 8a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0z", clipRule: "evenodd" })); const ForwardRef = forwardRef(GhostIcon); module.exports = ForwardRef;