// @flow import React from 'react'; import ReactCSSTransitionGroup from 'react-addons-css-transition-group'; import styled from 'styled-components'; import { pulsate } from 'shared/styles/animations'; import { color } from 'shared/styles/constants'; import Flex from 'components/Flex'; import { randomInteger } from 'utils/random'; const randomValues = Array.from( new Array(5), () => `${randomInteger(85, 100)}%` ); export default (props: Object) => { return ( ); }; const Item = styled(Flex)` padding: 18px 0; `; const Mask = styled(Flex)` height: ${props => (props.header ? 28 : 18)}px; margin-bottom: ${props => (props.header ? 18 : 0)}px; background-color: ${color.smoke}; animation: ${pulsate} 1.3s infinite; `;