import { Classes, Icon } from '@blueprintjs/core' import { List } from 'immutable'; import * as React from 'react'; import { Flex } from 'reflexbox'; import { ApiPlayer } from '../../api/model'; type PlayerListItemProps = { player: ApiPlayer, isOwner: boolean, isUser: boolean, }; const PlayerListItem = ({player, isOwner, isUser}: PlayerListItemProps) => (