Style Props
const Box = styled.div(space, fontSize, width, color)

render(
  <Box
    mb={3}
    p={[ 3, 4 ]}
    fontSize={[ 4, 5, 6 ]}
    color='white'
    bg='magenta'>
    Style Props
  </Box>
)