Files
outline/app/components/Sidebar/components/Bubble.js
2019-01-06 16:25:05 -08:00

41 lines
838 B
JavaScript

// @flow
import * as React from 'react';
import styled from 'styled-components';
import { fadeAndScaleIn } from 'shared/styles/animations';
import Flex from 'shared/components/Flex';
type Props = {
count: number,
};
const Bubble = ({ count }: Props) => {
return (
<Wrapper align="center" justify="center">
<Count>{count}</Count>
</Wrapper>
);
};
const Wrapper = styled(Flex)`
width: 24px;
height: 24px;
`;
const Count = styled.div`
animation: ${fadeAndScaleIn} 200ms ease;
border-radius: 100%;
color: ${props => props.theme.white};
background: ${props => props.theme.slateDark};
display: inline-block;
font-feature-settings: 'tnum';
font-weight: 600;
font-size: 9px;
line-height: 16px;
min-width: 16px;
min-height: 16px;
text-align: center;
padding: 0 4px;
`;
export default Bubble;