// @flow import * as React from "react"; type Props = { size?: number, fill?: string, className?: string, }; function MicrosoftLogo({ size = 34, fill = "#FFF", className }: Props) { return ( ); } export default MicrosoftLogo;