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 = props => { return (
); }; DocsLogo.defaultProps = { containerStyle: {}, };