import { Link } from '@0x/react-shared'; import * as React from 'react'; import { styled } from 'ts/style/theme'; import { WebsitePaths } from 'ts/types'; import { Container } from '../ui/container'; export interface DocsLogoProps { containerStyle?: React.CSSProperties; } const Image = styled.img` &:hover { opacity: 0.7; } `; export const DocsLogo: React.StatelessComponent = props => { return ( ); }; DocsLogo.defaultProps = { containerStyle: {}, };