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