import React from 'react'; import { Flex, Text } from '../../../../'; export const VoteCount = ({ voteCount }: { voteCount: number }) => { return ( {voteCount ? ( {voteCount}  {voteCount === 1 ? 'vote' : 'votes'} ) : null} ); };