react-feather#ArrowUpRight TypeScript Examples
The following examples show how to use
react-feather#ArrowUpRight.
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: DepositSuccess.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 6 votes |
DepositSuccess: FC<Props> = ({
depositUrl,
setShowSuccess,
setDepositUrl,
showSuccess,
}) => {
// Make sure we scroll to top when deposit screen mounts
useEffect(() => {
window.scroll(0, 0);
}, []);
const message =
showSuccess === "withdraw" ? "Withdrawal succeeded" : "Deposit succeeded";
return (
<div>
<DepositTopWrapper>
<SuccessText>{message}</SuccessText>
<CheckMarkWrapper>
<Check strokeWidth={5} />
</CheckMarkWrapper>
</DepositTopWrapper>
<DepositBottomWrapper>
<EtherscanUrl>
<a target="_blank" href={depositUrl} rel="noreferrer">
Etherscan <ArrowUpRight width={16} height={16} />
</a>
</EtherscanUrl>
<DepositButton
onClick={() => {
setShowSuccess(undefined);
setDepositUrl("");
}}
>
Close
</DepositButton>
</DepositBottomWrapper>
</div>
);
}
Example #2
Source File: Confirmation.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
Confirmation: React.FC = () => {
const { deposit, toggle } = useDeposits();
if (!deposit) return null;
const amountMinusFees = receiveAmount(deposit.amount, deposit.fees);
const tokenInfo = TOKENS_LIST[deposit.fromChain].find(
(t) => t.address === deposit.token
);
const isWETH = tokenInfo?.symbol === "WETH";
return (
<Layout>
<Wrapper>
<Header>
<Heading>Deposit succeeded</Heading>
<SubHeading>
Your funds will arrive in{" "}
{getConfirmationDepositTime(deposit.toChain)}
</SubHeading>
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
</Header>
<InfoSection>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
<div>
<Row>
<Info>
<h3>Sending</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(deposit.amount, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info>
<Info></Info>
<Info>
<h3>Receiving</h3>
<div>
<Logo
src={isWETH ? MAINNET_ETH?.logoURI : tokenInfo?.logoURI}
alt={`${
isWETH ? MAINNET_ETH?.symbol : tokenInfo?.symbol
} logo`}
/>
<div>
{formatUnits(
amountMinusFees,
(isWETH ? MAINNET_ETH?.decimals : tokenInfo?.decimals) ??
18
)}{" "}
{isWETH ? MAINNET_ETH?.symbol : tokenInfo?.symbol}
</div>
</div>
</Info>
</Row>
<Info>
<h3>From</h3>
<div>
<Logo
src={CHAINS[deposit.fromChain].logoURI}
alt={`${CHAINS[deposit.fromChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.fromChain].explorerUrl}/address/${
deposit.from
}`}
target="_blank"
rel="noopener noreferrer"
>
<span>{deposit.from}</span>
<span>{shortenAddressLong(deposit.from ?? "")}</span>
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>To</h3>
<div>
<Logo
src={CHAINS[deposit.toChain].logoURI}
alt={`${CHAINS[deposit.toChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.toChain].explorerUrl}/address/${
deposit.toAddress
}`}
target="_blank"
rel="noopener noreferrer"
>
<span>{deposit.toAddress}</span>
<span>{shortenAddressLong(deposit.toAddress ?? "")}</span>
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>Estimated time of arrival</h3>
<div>
<div>{getConfirmationDepositTime(deposit.toChain)}</div>
</div>
</Info>
</div>
<Button onClick={() => toggle({ showConfirmationScreen: false })}>
Close
</Button>
</InfoSection>
</Wrapper>
</Layout>
);
}
Example #3
Source File: NewConfirmation.tsx From frontend-v1 with GNU Affero General Public License v3.0 | 4 votes |
Confirmation: React.FC = () => {
const { deposit, toggle } = useDeposits();
const [l1DepositSuccess] = useState(true);
if (!deposit) return null;
// const amountMinusFees = receiveAmount(deposit.amount, deposit.fees);
const tokenInfo = TOKENS_LIST[deposit.fromChain].find(
(t) => t.address === deposit.token
);
return (
<Layout>
<Wrapper>
<Header>
<SuccessIconRow>
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
{l1DepositSuccess ? (
<SuccessIcon>
<Check strokeWidth={4} />
</SuccessIcon>
) : (
<ConfirmationIcon>
<div>~2 minutes</div>
</ConfirmationIcon>
)}
</SuccessIconRow>
{l1DepositSuccess ? <SuccessIconRow /> : <ConfirmationLine />}
<SuccessInfoRow>
<SuccessInfoBlock>
<SuccessInfoText>Deposit succeeded</SuccessInfoText>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
</SuccessInfoBlock>
<SuccessInfoBlock>
{l1DepositSuccess ? (
<>
<SuccessInfoText>Transfer succeeded</SuccessInfoText>
<Link
href={CHAINS[deposit.fromChain].constructExplorerLink(
deposit.txHash
)}
target="_blank"
rel="noopener norefferrer"
>
Explorer <ArrowUpRight width={16} height={16} />
</Link>
</>
) : (
<ConfirmationText>Funds transferred</ConfirmationText>
)}
</SuccessInfoBlock>
</SuccessInfoRow>
</Header>
<InfoSection>
<div>
<Row>
<Info>
<h3>Send</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(deposit.amount, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info>
<Info></Info>
{/* <Info>
<h3>Receiving</h3>
<div>
<Logo
src={tokenInfo?.logoURI}
alt={`${tokenInfo?.symbol} logo`}
/>
<div>
{formatUnits(amountMinusFees, tokenInfo?.decimals ?? 18)}{" "}
{tokenInfo?.symbol}
</div>
</div>
</Info> */}
</Row>
<Info>
<h3>From</h3>
<div>
<Logo
src={CHAINS[deposit.fromChain].logoURI}
alt={`${CHAINS[deposit.fromChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.fromChain].explorerUrl}/address/${
deposit.from
}`}
target="_blank"
rel="noopener noreferrer"
>
{deposit.from}
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>To</h3>
<div>
<Logo
src={CHAINS[deposit.toChain].logoURI}
alt={`${CHAINS[deposit.toChain].name} logo`}
/>
<div>
<SecondaryLink
href={`${CHAINS[deposit.toChain].explorerUrl}/address/${
deposit.toAddress
}`}
target="_blank"
rel="noopener noreferrer"
>
{deposit.toAddress}
</SecondaryLink>
</div>
</div>
</Info>
<Info>
<h3>Estimated time of arrival</h3>
<div>
<div>~2 minutes</div>
</div>
</Info>
</div>
<Button onClick={() => toggle({ showConfirmationScreen: false })}>
Close
</Button>
</InfoSection>
</Wrapper>
</Layout>
);
}