function ImageContainer()

in theme/src/components/image-container.js [4:10]


function ImageContainer({children}) {
  return (
    <BorderBox sx={{p: 6, bg: 'gray.1'}}>
      <Flex sx={{img: {maxWidth: '100%'}, justifyContent: 'center'}}>{children}</Flex>
    </BorderBox>
  )
}