blob: 1a02e211e0b54790c93e24d3bd35625315ffb698 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import * as React from 'react';
import styled from 'styled-components';
import LogoIcon from '../icons/logo-with-type.svg';
interface LogoInterface {
// showType: boolean;
}
const StyledLogo = styled.div`
text-align: left;
`;
const Icon = styled(LogoIcon)`
flex-shrink: 0;
`;
export const Logo: React.StatelessComponent<LogoInterface> = ({}) => (
<StyledLogo>
<Icon />
</StyledLogo>
);
|