import React, {ReactNode} from 'react' import {useThemeStyle, cssRuleWithTheme} from '../style/themeContext' import {Spacing} from '../style/helpers' const NavigationBarStyle = cssRuleWithTheme(({theme}) => ({ display: 'flex', overflow: 'hidden', width: '100%', backgroundColor: theme.colors.white, borderBottom: `solid 1px ${theme.colors.grayLight}` })) const NavigationBarLeftWrapperStyle = cssRuleWithTheme(({theme}) => ({ display: 'flex', flexGrow: 1, flexBasis: 0 })) const NavigationBarCenterWrapperStyle = cssRuleWithTheme(({theme}) => ({ display: 'flex', margin: `0 ${Spacing.ExtraSmall}` })) const NavigationBarRightWrapperStyle = cssRuleWithTheme(({theme}) => ({ display: 'flex', flexGrow: 1, flexBasis: 0, justifyContent: 'flex-end' })) export interface NavigationBarProps { leftChildren?: ReactNode rightChildren?: ReactNode centerChildren?: ReactNode } export function NavigationBar({leftChildren, rightChildren, centerChildren}: NavigationBarProps) { const css = useThemeStyle() return (