()
| 6 | import FollowIcon from '../Icons/FollowIcon'; |
| 7 | |
| 8 | const styles = () => ({ |
| 9 | mediaIndicator: { |
| 10 | fontSize: 18, |
| 11 | width: '50%', |
| 12 | display: 'flex', |
| 13 | flexDirection: 'column', |
| 14 | alignItems: 'center', |
| 15 | padding: '22px 0', |
| 16 | '& strong': { |
| 17 | margin: '1px 0', |
| 18 | }, |
| 19 | '& span': { |
| 20 | fontSize: 13, |
| 21 | opacity: .6, |
| 22 | } |
| 23 | }, |
| 24 | mediaIconsWrapper: { |
| 25 | display: 'flex', |
| 26 | flexWrap: 'wrap', |
| 27 | width: '100%', |
| 28 | '@media (max-width: 1280px)': { |
| 29 | marginTop: 40, |
| 30 | } |
| 31 | }, |
| 32 | valueLabel: { |
| 33 | marginBottom: '-8px', |
| 34 | } |
| 35 | }) |
| 36 | |
| 37 | const useStyles = makeStyles(styles); |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected