You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
510 B
18 lines
510 B
import React from 'react'
|
|
import { Flex } from 'rebass'
|
|
import { Button, Text } from 'components/UI'
|
|
import PlusCircle from 'components/Icon/PlusCircle'
|
|
|
|
const CreateWalletButton = ({ ...rest }) => (
|
|
<Button {...rest} variant="secondary">
|
|
<Flex alignItem="center">
|
|
<Text color="lightningOrange">
|
|
<PlusCircle width="22px" height="22px" />
|
|
</Text>
|
|
<Text lineHeight="22px" ml={2}>
|
|
Create new wallet
|
|
</Text>
|
|
</Flex>
|
|
</Button>
|
|
)
|
|
export default CreateWalletButton
|
|
|