import { Tooltip } from "@medusajs/ui" import ReactCountryFlag from "react-country-flag" import { PlaceholderCell } from "../../common/placeholder-cell" import { HttpTypes } from "@medusajs/types" type Country = Omit & { id?: string } export const CountryCell = ({ country }: { country?: Country | null }) => { if (!country) { return } return (
) }