React SVG icon component that renders the MeshCentral logo in a grey/monochrome style as a 24×24 inline SVG with an embedded base64-encoded PNG image. ## Key Components - **`MeshcentralLogoGreyIconProps`** — Interface extending React's `SVGProps` (excluding `width`/`height`) with three optional props: - `className` — CSS class string (default: `""`) - `size` — Uniform width/height in pixels (default: `24`) - `color` — Fill color token (default: `"currentColor"`) - **`MeshcentralLogoGreyIcon`** — Functional component that renders a rounded-corner SVG using an SVG `` and `` element containing an embedded base64 PNG of the MeshCentral grey logo. ## Usage Example ```typescript import { MeshcentralLogoGreyIcon } from "./meshcentral-logo-grey-icon"; // Default size (24px) // Custom size // With Tailwind class // Spread additional SVG props ``` > **Note:** The `color` prop is accepted but does not affect rendering since the logo is rendered as an embedded PNG bitmap via an SVG ``. Use `className` with CSS `opacity` or `filter` utilities to visually adjust the icon appearance.