export function OutcomeLabel(props: { outcome: 'YES' | 'NO' | 'CANCEL' | 'MKT' | string }) { const { outcome } = props if (outcome === 'YES') return if (outcome === 'NO') return if (outcome === 'MKT') return if (outcome === 'CANCEL') return return } export function YesLabel() { return YES } export function NoLabel() { return NO } export function CancelLabel() { return N/A } export function ProbLabel() { return PROB } export function AnswerNumberLabel(props: { number: string }) { return #{props.number} }