blob: 6f3c3c6e8e5a42bfdfc58cecad7ed6dfaadaedfb (
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 { Link } from '@0xproject/react-shared';
import * as React from 'react';
import { WebsitePaths } from 'ts/types';
export interface DocsLogoProps {
height: number;
containerStyle?: React.CSSProperties;
}
export const DocsLogo: React.StatelessComponent<DocsLogoProps> = props => {
return (
<div style={props.containerStyle}>
<Link to={WebsitePaths.Docs}>
<img src="/images/docs_logo.svg" height={props.height} />
</Link>
</div>
);
};
DocsLogo.defaultProps = {
containerStyle: {},
};
|