import type { ReactElement } from 'react' import { Flag } from './Flag' type LocationProps = { country: string countryCode: string city: string time: string showFlag?: boolean } export function LocationItem({ country, countryCode, city, time, showFlag = true }: LocationProps): ReactElement { return ( <> {showFlag && ( )} {city} {time} ) }