import React from 'react'; import { Box, Flex } from '../../../Layout'; import { Text } from '../../../Text'; import { Duration } from './Duration'; export const RoomDetailsRow = ({ details }: { details: (string | Date)[] }) => { return ( {details.map((detail, index) => ( {index > 0 && } {typeof detail !== 'string' ? ( ) : ( {detail} )} ))} ); };