import { colors, Styles } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; import { Menu } from 'ts/components/portal/menu'; import { Identicon } from 'ts/components/ui/identicon'; import { utils } from 'ts/utils/utils'; const IDENTICON_DIAMETER = 45; const BORDER_RADIUS = '50%'; const styles: Styles = { root: { backgroundColor: '#4A4A4A', width: '100%', height: '100%', }, identicon: { borderWidth: 3, borderStyle: 'solid', borderColor: colors.white, borderRadius: BORDER_RADIUS, MozBorderRadius: BORDER_RADIUS, WebkitBorderRadius: BORDER_RADIUS, }, userAddress: { color: colors.white, }, }; export interface DrawerMenuProps { selectedPath?: string; userAddress?: string; } export const DrawerMenu = (props: DrawerMenuProps) => { return (
); }; interface HeaderProps { userAddress?: string; } const Header = (props: HeaderProps) => { return (
{!_.isUndefined(props.userAddress) && (
{utils.getAddressBeginAndEnd(props.userAddress)}
)}
); };