File size: 338 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import styled from 'styled-components';

const StyledCounter = styled.div`
  margin: 10px 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
`;

const OnlineFriendsCounter = ({ online }) => <StyledCounter>{online} Online</StyledCounter>;

export default OnlineFriendsCounter;