import { colors } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; const SHOW_DURATION_MS = 4000; interface SidebarHeaderProps { title: string; iconUrl: string; } interface SidebarHeaderState {} export class SidebarHeader extends React.Component { public render(): React.ReactNode { return (
0x
docs
|
{this.props.title}
); } }