blob: 0b98fcf9db1e4ab3343af0c5ccbf1e9973c2925c (
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
|
import * as React from 'react';
import styled from 'styled-components';
import LogoIcon from '../icons/logo-with-type.svg';
interface LogoInterface {
// showType: boolean;
light?: any;
}
// 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;
`;
const Icon = styled(LogoIcon)`
flex-shrink: 0;
path {
fill: ${props => props.light ? '#fff' : props.theme.textColor};
}
`;
export const Logo: React.StatelessComponent<LogoInterface> = (props) => (
<StyledLogo>
<Icon {...props} />
</StyledLogo>
);
|