forked from rage/java-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogo.js
More file actions
45 lines (39 loc) · 957 Bytes
/
Copy pathLogo.js
File metadata and controls
45 lines (39 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from "react"
import logo from "../images/logo.png"
import styled from "styled-components"
import "typeface-open-sans-condensed"
import withSimpleErrorBoundary from "../util/withSimpleErrorBoundary"
const LogoImg = styled.img`
width: 3.4em;
height: 3.4em;
margin-right: 0.5em;
margin-bottom: 0;
`
const LogoTypography = styled.div`
flex: 1;
font-family: "Open Sans Condensed", sans-serif !important;
font-size: 1.75em !important;
`
const StyledLink = styled.a`
text-decoration: none;
color: black;
display: flex;
align-items: center;
padding: 1em;
padding-right: 1.7em;
height: 64px;
background-color: white;
:hover {
text-decoration: none;
color: black;
}
`
const Logo = () => (
<StyledLink href="https://mooc.fi">
<LogoImg src={logo} />
<LogoTypography variant="title" color="inherit">
MOOC.fi
</LogoTypography>
</StyledLink>
)
export default withSimpleErrorBoundary(Logo)