// @flow import React from 'react'; import styled from 'styled-components'; import { color, layout } from 'styles/constants'; import type { User, Team } from 'types'; import Flex from 'components/Flex'; type Props = { user: User, team: Team, children?: React$Element, }; function HeaderBlock({ user, team, children }: Props) { return (
{team.name} {user.name} {children}
); } const UserName = styled.div` font-size: 13px; `; const TeamName = styled.div` font-family: 'Atlas Grotesk'; font-weight: bold; color: ${color.text}; text-decoration: none; font-size: 16px; `; const Header = styled(Flex)` flex-shrink: 0; padding: ${layout.padding}; position: relative; cursor: pointer; width: 100%; &:active, &:hover { background: rgba(0,0,0,.05); } &::after { content: ""; left: ${layout.hpadding}; right: ${layout.hpadding}; background: rgba(0,0,0,.075); height: 1px; position: absolute; bottom: 0; } `; export default HeaderBlock;