'use client'; type MoneyFlowBarProps = { label: string; ticketPct: number; handlePct: number; }; export function MoneyFlowBar({ label, ticketPct, handlePct }: MoneyFlowBarProps) { const alert = handlePct - ticketPct >= 20; return (

{label}

投注筆數:{ticketPct.toFixed(1)}%

資金占比:{handlePct.toFixed(1)}%

{alert ? (

聰明錢警示:資金比例高於票數超過 20%

) : (

目前無明顯聰明錢偏離

)}
); }