diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-20 05:49:38 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-10-20 05:49:38 +0800 |
commit | d2766d7ced990efd5a91441b459f36e8a21f8513 (patch) | |
tree | 8d8c8d45ddf8ece95bcc84645b6076e59b54604e /packages/instant/src/components/buy_button.tsx | |
parent | 6c79a858dff2766917ee3a4b5d4f623b66dadd17 (diff) | |
download | dexon-0x-contracts-d2766d7ced990efd5a91441b459f36e8a21f8513.tar.gz dexon-0x-contracts-d2766d7ced990efd5a91441b459f36e8a21f8513.tar.zst dexon-0x-contracts-d2766d7ced990efd5a91441b459f36e8a21f8513.zip |
Selected Asset button
Diffstat (limited to 'packages/instant/src/components/buy_button.tsx')
-rw-r--r-- | packages/instant/src/components/buy_button.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/instant/src/components/buy_button.tsx b/packages/instant/src/components/buy_button.tsx index 4d2386620..5eef18aa3 100644 --- a/packages/instant/src/components/buy_button.tsx +++ b/packages/instant/src/components/buy_button.tsx @@ -6,7 +6,7 @@ import { ColorOption } from '../style/theme'; import { util } from '../util/util'; import { web3Wrapper } from '../util/web3_wrapper'; -import { Button, Container, Text } from './ui'; +import { Button, Text } from './ui'; export interface BuyButtonProps { buyQuote?: BuyQuote; @@ -14,7 +14,6 @@ export interface BuyButtonProps { onClick: (buyQuote: BuyQuote) => void; onBuySuccess: (buyQuote: BuyQuote, txnHash: string) => void; onBuyFailure: (buyQuote: BuyQuote, tnxHash?: string) => void; - text: string; } export class BuyButton extends React.Component<BuyButtonProps> { @@ -24,12 +23,11 @@ export class BuyButton extends React.Component<BuyButtonProps> { onBuyFailure: util.boundNoop, }; public render(): React.ReactNode { - // TODO: move container out const shouldDisableButton = _.isUndefined(this.props.buyQuote); return ( <Button width="100%" onClick={this._handleClick} isDisabled={shouldDisableButton}> <Text fontColor={ColorOption.white} fontWeight={600} fontSize="20px"> - {this.props.text} + Buy </Text> </Button> ); |