Team switcher
This commit is contained in:
12
shared/components/TeamLogo.js
Normal file
12
shared/components/TeamLogo.js
Normal file
@ -0,0 +1,12 @@
|
||||
// @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;
|
Reference in New Issue
Block a user