@fortawesome/free-solid-svg-icons#faClipboardCheck JavaScript Examples

The following examples show how to use @fortawesome/free-solid-svg-icons#faClipboardCheck. 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: index.jsx    From loopring-swap with GNU General Public License v3.0 6 votes vote down vote up
ExchangeInfo = () => {
    return (
        <>
            <ListItemHeader mb={2}>
                <FormattedMessage id="drawer.wallet.connect.list.header.exchange.info" />
            </ListItemHeader>
            <UndecoratedLink
                href="https://loopring.io/document/fees"
                target="_blank"
                rel="noreferrer noopener"
            >
                <ListItemBox>
                    <ListItemIcon icon={faDollarSign} />{" "}
                    <FormattedMessage id="drawer.wallet.connect.list.item.fee.schedule" />
                </ListItemBox>
            </UndecoratedLink>
            <UndecoratedLink
                href="https://loopringexchange.typeform.com/to/nWXj6B"
                target="_blank"
                rel="noreferrer noopener"
            >
                <ListItemBox>
                    <ListItemIcon icon={faClipboardCheck} />{" "}
                    <FormattedMessage id="drawer.wallet.connect.list.item.token.listing" />
                </ListItemBox>
            </UndecoratedLink>
            <UndecoratedLink
                href="https://loopring.io/legal/terms"
                target="_blank"
                rel="noreferrer noopener"
            >
                <ListItemBox>
                    <ListItemIcon icon={faFileSignature} />{" "}
                    <FormattedMessage id="drawer.wallet.connect.list.item.terms.privacy" />
                </ListItemBox>
            </UndecoratedLink>
        </>
    );
}