export function OutcomeLabel(props: { outcome: 'YES' | 'NO' | 'CANCEL' | 'MKT' }) { const { outcome } = props if (outcome === 'YES') return if (outcome === 'NO') return if (outcome === 'MKT') return return } export function YesLabel() { return YES } export function NoLabel() { return NO } export function CancelLabel() { return N/A } export function MarketLabel() { return MKT }