import type { SVGProps } from "react"; export interface MeshcentralLogoGreyIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function MeshcentralLogoGreyIcon({ className = "", size = 24, color = "currentColor", ...props }: MeshcentralLogoGreyIconProps) { return ( ); }