import { Flex, Text } from 'theme-ui' import { isEmpty } from 'lodash' const Stat = ({ value, label, unit = '', color = 'text', of, center = false, reversed = false, half = false, lg = false, sm = false, ...props }) => ( {value || '—'} {!isEmpty(unit) && ( {unit} )} {!isEmpty(of) && ( {of} )} {!isEmpty(label) && ( {label} )} ) export default Stat