File size: 360 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @flow

import * as React from "react";

type Props = {|
  +href?: string,
  +src?: string,
  +alt?: string,
|};

const SiteLogo = (props: Props): React.Node => (
  <a className="header-brand" href={props.href}>
    <img src={props.src} className="header-brand-img" alt={props.alt} />
  </a>
);

SiteLogo.displayName = "Site.Logo";

export default SiteLogo;