aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/buy_button.tsx
blob: 9a70d127f3fd517386f27b29b7c9c0b8e43d478b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as React from 'react';

import { ColorOption } from '../style/theme';

import { Button, Container, Text } from './ui';

export interface BuyButtonProps {}

export const BuyButton: React.StatelessComponent<BuyButtonProps> = props => (
    <Container backgroundColor={ColorOption.white} padding="20px" width="100%">
        <Button width="100%">
            <Text fontColor={ColorOption.white} fontWeight={600} fontSize="20px">
                Buy
            </Text>
        </Button>
    </Container>
);

BuyButton.displayName = 'BuyButton';