diff --git a/web/components/contract/contract-card.tsx b/web/components/contract/contract-card.tsx index cf910ef3..42585b25 100644 --- a/web/components/contract/contract-card.tsx +++ b/web/components/contract/contract-card.tsx @@ -27,6 +27,12 @@ import { import { getOutcomeProbability, getTopAnswer } from 'common/calculate' import { AbbrContractDetails } from './contract-details' import { getExpectedValue, getValueFromBucket } from 'common/calculate-dpm' +import { + ArrowCircleUpIcon, + ArrowCircleDownIcon, + StarIcon, + PaperAirplaneIcon, +} from '@heroicons/react/outline' // Return a number from 0 to 1 for this contract // Resolved contracts are set to 1, for coloring purposes (even if NO) @@ -135,6 +141,28 @@ export function ContractCard(props: { /> )} + {/* Show a row with 3 clickable icons: star, upvote, downvote */} +