prob and mkt labels

This commit is contained in:
mantikoros 2022-01-30 15:50:10 -06:00
parent 70088ec7bb
commit 8e96769a57

View File

@ -5,7 +5,7 @@ export function OutcomeLabel(props: {
if (outcome === 'YES') return <YesLabel /> if (outcome === 'YES') return <YesLabel />
if (outcome === 'NO') return <NoLabel /> if (outcome === 'NO') return <NoLabel />
if (outcome === 'MKT') return <MarketLabel /> if (outcome === 'MKT') return <ProbLabel />
return <CancelLabel /> return <CancelLabel />
} }
@ -22,5 +22,9 @@ export function CancelLabel() {
} }
export function MarketLabel() { export function MarketLabel() {
return <span className="text-blue-400">MKT</span>
}
export function ProbLabel() {
return <span className="text-blue-400">PROB</span> return <span className="text-blue-400">PROB</span>
} }