replayCountBadge.tsx 246 B

12345678
  1. import Badge from 'sentry/components/badge';
  2. function ReplayCountBadge({count}: {count: undefined | number}) {
  3. const display = count && count > 50 ? '50+' : count ?? null;
  4. return <Badge text={display} />;
  5. }
  6. export default ReplayCountBadge;