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