import { Box, Flex } from 'theme-ui' interface InfoItemProps { title: string children: React.ReactNode } const InfoItem = ({ title, children }: InfoItemProps) => { return ( {title} {children} ) } export default InfoItem