blob: 19aeb901ed0c4fe0c065d58486dc6d1a04dd2f01 (
plain) (
blame)
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
|
import * as React from 'react';
import styled from 'styled-components';
import { ThemeInterface } from 'ts/components/siteWrap';
import LogoIcon from 'ts/icons/logo-with-type.svg';
interface LogoInterface {
theme?: ThemeInterface;
}
// Note let's refactor this
// is it absolutely necessary to have a stateless component
// to pass props down into the styled icon?
const StyledLogo = styled.div`
text-align: left;
position: relative;
z-index: 25;
@media (max-width: 800px) {
svg {
width: 60px;
}
}
`;
const Icon =
styled(LogoIcon) <
LogoInterface >
`
flex-shrink: 0;
path {
fill: ${props => props.theme.textColor};
}
`;
export const Logo: React.StatelessComponent<LogoInterface> = (props: LogoInterface) => (
<StyledLogo>
<Icon {...props} />
</StyledLogo>
);
|