// @flow import * as React from "react"; type Props = {| +href?: string, +src?: string, +alt?: string, |}; const SiteLogo = (props: Props): React.Node => ( {props.alt} ); SiteLogo.displayName = "Site.Logo"; export default SiteLogo;