import * as React from 'react'; import { Image, ImageProps } from '@fluentui/react-northstar'; export type LogoProps = ImageProps & { flavor?: 'black' | 'white' | 'inverted'; }; const Logo: React.SFC = ({ flavor, ...props }) => ( ); export default Logo;