import clsx from 'clsx' import { ENV_CONFIG } from 'common/envs/constants' export function ProfitBadge(props: { profitPercent: number round?: boolean className?: string }) { const { profitPercent, round, className } = props if (!profitPercent) return null const colors = profitPercent > 0 ? 'bg-green-100 text-green-800' : 'bg-red-100 text-red-800' return ( {(profitPercent > 0 ? '+' : '') + profitPercent.toFixed(round ? 0 : 1) + '%'} ) } export function ProfitBadgeMana(props: { amount: number gray?: boolean className?: string }) { const { amount, gray, className } = props const colors = gray ? 'bg-gray-100 text-gray-700' : amount > 0 ? 'bg-gray-100 text-green-800' : 'bg-gray-100 text-red-800' const formatted = ENV_CONFIG.moneyMoniker + (amount > 0 ? '+' : '') + amount.toFixed(0) return ( {formatted} ) }