react-icons/fa APIs
- FaTwitter
- FaGithub
- FaSearch
- FaDiscord
- FaEye
- FaInstagram
- FaPlus
- FaFacebookF
- FaTrash
- FaGlobe
- FaUsers
- FaEdit
- FaListUl
- FaWhatsapp
- FaApple
- FaTimes
- FaMoon
- FaSun
- FaYoutube
- FaInfoCircle
- FaSave
- FaEyeSlash
- FaCheck
- FaRegCheckCircle
- FaExternalLinkAlt
- FaChevronUp
- FaChevronDown
- FaUser
- FaThumbsUp
- FaGoogle
- FaChevronLeft
- FaTrashAlt
- FaCheckCircle
- FaExclamationCircle
- FaCode
- FaFilter
- FaLinkedinIn
- FaHome
- FaAngleRight
- FaAngleLeft
- FaCopy
- FaArrowRight
- FaThumbsDown
- FaTimesCircle
- FaMapMarkedAlt
- FaNetworkWired
- FaFacebook
- FaMedal
- FaQuestionCircle
- FaAppStoreIos
- FaRegNewspaper
- FaLinkedin
- FaAward
- FaSpinner
- FaBell
- FaLink
- FaCog
- FaCaretDown
- FaCaretLeft
- FaCaretRight
- FaRegQuestionCircle
- FaSignInAlt
- FaRegCircle
- FaPlayCircle
- FaBook
- FaMinus
- FaRegClock
- FaRegTimesCircle
- FaUserClock
- FaClipboardCheck
- FaTelegram
- FaToolbox
- FaCalendarAlt
- FaChevronCircleDown
- FaChevronCircleUp
- FaChevronCircleRight
- FaCogs
- FaDownload
- FaSitemap
- FaTrophy
- FaGripVertical
- FaFlagCheckered
- FaMapMarkerAlt
- FaChrome
- FaRegStickyNote
- FaRegSun
- FaTags
- FaGetPocket
- FaRegEdit
- FaRobot
- FaDev
- FaQuora
- FaGraduationCap
- FaClipboard
- FaVine
- FaMicroscope
- FaReact
- FaVuejs
- FaPalette
- FaPen
- FaSmile
- FaPaperPlane
- FaImage
- FaUserPlus
- FaAnchor
- FaCaretUp
- FaRss
- FaRegLightbulb
- FaStar
- FaSignOutAlt
- FaUserMinus
- FaEnvelopeOpenText
- FaPencilAlt
- FaExclamation
- FaUnlock
- FaLock
- FaSlack
- FaUserCircle
- FaEnvelope
- FaKey
- FaRegStar
- FaWrench
- FaMarkdown
- FaArrowCircleLeft
- FaArrowCircleRight
- FaScroll
- FaUserFriends
- FaBolt
- FaExpand
- FaLocationArrow
- FaStopCircle
- FaHandHolding
- FaPhotoVideo
- FaShareAlt
- FaVoicemail
- FaGithubAlt
- FaLifeRing
- FaSyncAlt
- FaSoundcloud
- FaSpotify
- FaHistory
- FaBloggerB
- FaDrawPolygon
- FaHandPaper
- FaHandPointer
- FaPhone
- FaList
- FaMailBulk
- FaHourglass
- FaMediumM
- FaPlay
- FaGift
- FaChevronRight
- FaLongArrowAltRight
- FaMedium
- FaWindowClose
- FaEllipsisH
- FaVolumeUp
- FaVolumeMute
- FaKeyboard
- FaHammer
- FaFileImport
- FaListOl
- FaSquare
- FaFillDrip
- FaUserLock
- FaRegPlusSquare
- FaRegFile
- FaSlash
- FaCloudUploadAlt
- FaBackspace
- FaAngleDoubleRight
- FaAngleDoubleLeft
- FaGlasses
- FaPause
- FaCheckSquare
- FaComment
- FaPrint
- FaShareSquare
- FaChartBar
- FaMagic
- FaBicycle
- FaCat
- FaDirections
- FaGlobeAfrica
- FaMountain
- FaUpload
- FaLightbulb
- FaDocker
- FaTwitterSquare
- FaGlobeAmericas
- FaLinux
- FaFile
- FaDesktop
- FaFacebookMessenger
- FaWpforms
- FaBomb
- FaBars
- FaTabletAlt
- FaMemory
- FaCalendarDay
- Fa500Px
- FaAdobe
- FaAdversal
- FaAirbnb
- FaAlipay
- FaAmazon
- FaAmazonPay
- FaBehanceSquare
- FaInstagramSquare
- FaLaugh
- FaMagento
- FaOpera
- FaYinYang
Other Related APIs
react-icons/fa#FaTrophy TypeScript Examples
The following examples show how to use
react-icons/fa#FaTrophy.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GovernanceInformation.tsx From dxvote with GNU Affero General Public License v3.0 | 4 votes |
GovernanceInformation = observer(() => {
const {
context: { daoStore },
} = useContext();
const totalRep = daoStore.daoCache.reputation.total;
const governanceInfo = daoStore.getGovernanceInfo();
function toNumber(weiNumber) {
return bnum(weiNumber)
.div(10 ** 18)
.toFixed(0);
}
return (
<GovernanceInfoWrapper>
<Title centered>Stats</Title>
<Row>
<InfoBox>{toNumber(totalRep)} REP</InfoBox>
<InfoBox>{governanceInfo.totalPositiveVotes} Positive Votes</InfoBox>
<InfoBox>{governanceInfo.totalNegativeVotes} Negative Votes</InfoBox>
<InfoBox>{governanceInfo.totalProposalsCreated} Proposals</InfoBox>
</Row>
<Title centered>Reputation Charts</Title>
<Row>
<Chart
chartType="PieChart"
loader={<div>Loading Chart</div>}
data={governanceInfo.rep}
options={{
legend: 'none',
pieSliceText: 'none',
pieStartAngle: 100,
title: 'Reputation Distribution',
sliceVisibilityThreshold: 0.001, // 0.1%
}}
/>
<Chart
width="100%"
chartType="LineChart"
loader={<div>Loading Chart</div>}
data={governanceInfo.repEvents}
options={{
hAxis: { title: 'Block Number' },
vAxis: { title: 'Reputation' },
title: 'Reputation over Time',
legend: 'none',
}}
/>
</Row>
<Title centered>Governance Ranking</Title>
<Row>
<InfoBox>
Create Proposal
<br />
<strong>1 to 30 Points</strong>
</InfoBox>
<InfoBox>
Vote Winning Option
<br />
<strong>3 Points</strong>
</InfoBox>
<InfoBox>
Vote Losing Option
<br />
<strong>1 Point</strong>
</InfoBox>
<InfoBox>
Stake Winning Option
<br />
<strong>1 Point</strong>
</InfoBox>
</Row>
<GovernanceTable>
<TableHeader>
<HeaderCell align="center">#</HeaderCell>
<HeaderCell align="center">Address</HeaderCell>
<HeaderCell align="center">Proposals Created</HeaderCell>
<HeaderCell align="center">Voted</HeaderCell>
<HeaderCell align="center">Staked</HeaderCell>
<HeaderCell align="center">Score</HeaderCell>
</TableHeader>
<TableBody>
{governanceInfo.ranking.map((user, i) => {
return (
<TableRow key={`user${i}`}>
<DataCell align="center" weight="500">
{' '}
{i + 1}
{i === 0 ? (
<FaTrophy color="gold" />
) : i === 1 ? (
<FaTrophy color="silver" />
) : i === 2 ? (
<FaTrophy color="#CD7F32" />
) : i < 6 ? (
<FaMedal color="gold" />
) : i < 9 ? (
<FaMedal color="silver" />
) : i < 12 ? (
<FaMedal color="#CD7F32" />
) : (
<div />
)}
</DataCell>
<DataCell weight="500">
<BlockchainLink
size="long"
type="address"
text={user.address}
toCopy
/>
</DataCell>
<DataCell>{user.proposals}</DataCell>
<DataCell>
<Positive>{user.correctVotes} </Positive>-
<Negative> {user.wrongVotes}</Negative>
</DataCell>
<DataCell>
<Positive>{user.correctStakes} </Positive>-
<Negative> {user.wrongStakes}</Negative>
</DataCell>
<DataCell align="center">{user.score.toFixed(0)}</DataCell>
</TableRow>
);
})}
</TableBody>
</GovernanceTable>
</GovernanceInfoWrapper>
);
})