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, ...props }) => ( {!isEmpty(unit) && ( )} {!isEmpty(of) && ( )} {!isEmpty(label) && ( )} ) export default Stat