aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/onboarding/set_allowances_onboarding_step.tsx
blob: 5ddfe38d7ecf400422c7bc34a73ab9b4891dfd65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import * as React from 'react';
import { Container } from 'ts/components/ui/container';
import { Text } from 'ts/components/ui/text';

export interface SetAllowancesOnboardingStepProps {
    zrxAllowanceToggle: React.ReactNode;
    ethAllowanceToggle: React.ReactNode;
    doesUserHaveAllowancesForWethAndZrx: boolean;
}

export const SetAllowancesOnboardingStep: React.StatelessComponent<SetAllowancesOnboardingStepProps> = ({
    ethAllowanceToggle,
    zrxAllowanceToggle,
    doesUserHaveAllowancesForWethAndZrx,
}) => (
    <div className="flex items-center flex-column">
        <Text>Unlock your tokens for trading. You only need to do this once for each token.</Text>
        <Container width="100%" marginTop="25px" marginBottom="15px" className="flex justify-around">
            <div className="flex flex-column items-center">
                <Text fontWeight={700}> Enable WETH </Text>
                <Container marginTop="10px">{ethAllowanceToggle}</Container>
            </div>
            <div className="flex flex-column items-center">
                <Text fontWeight={700}> Enable ZRX </Text>
                <Container marginTop="10px">{zrxAllowanceToggle}</Container>
            </div>
        </Container>
        {doesUserHaveAllowancesForWethAndZrx && <Text>Perfect! Both your ZRX and WETH tokens are unlocked.</Text>}
    </div>
);