Team switcher

This commit is contained in:
Tom Moor
2018-11-11 16:24:05 -08:00
parent 10e1f0231c
commit cc9f32cdc9
8 changed files with 107 additions and 26 deletions

View File

@@ -3,7 +3,7 @@ import * as React from 'react';
import styled, { withTheme } from 'styled-components';
import { ExpandedIcon } from 'outline-icons';
import Flex from 'shared/components/Flex';
import TeamLogo from './TeamLogo';
import TeamLogo from 'shared/components/TeamLogo';
type Props = {
teamName: string,

View File

@@ -1,12 +0,0 @@
// @flow
import styled from 'styled-components';
const TeamLogo = styled.img`
width: 38px;
height: 38px;
border-radius: 4px;
background: ${props => props.theme.white};
border: 1px solid ${props => props.theme.slateLight};
`;
export default TeamLogo;