import { LimitedBadges } from "@calcom/web/components/ui/LimitedBadges"; import { CellWithOverflowX } from "./CellWithOverflowX"; export function ResponseValueCell({ optionMap, values, }: { optionMap: Record; values: string[]; }): JSX.Element { if (values.length === 0) return
; return ( ({ label: optionMap[id] ?? id, variant: "gray" as const, }))} /> ); }