mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 11:33:41 +03:00
Add exit buttons to invoices
This commit is contained in:
parent
a0e0f3404c
commit
b4eae08f88
@ -111,6 +111,9 @@ const BridgeInvoice: React.FC<Props> = ({ payee, stopSending, satsAmount }) => {
|
||||
mb={5}
|
||||
p={5}
|
||||
>
|
||||
<Row flexDirection="row-reverse">
|
||||
<Icon icon="X" cursor="pointer" onClick={() => stopSending()} />
|
||||
</Row>
|
||||
<Col
|
||||
p={5}
|
||||
mt={4}
|
||||
|
@ -126,6 +126,9 @@ const ExternalInvoice: React.FC<Props> = ({
|
||||
mb={5}
|
||||
p={5}
|
||||
>
|
||||
<Row flexDirection="row-reverse">
|
||||
<Icon icon="X" cursor="pointer" onClick={() => stopSending()} />
|
||||
</Row>
|
||||
<Col
|
||||
p={5}
|
||||
mt={4}
|
||||
|
@ -172,6 +172,9 @@ const Invoice: React.FC<Props> = ({ stopSending, payee, satsAmount }) => {
|
||||
mb={5}
|
||||
p={5}
|
||||
>
|
||||
<Row flexDirection="row-reverse">
|
||||
<Icon icon="X" cursor="pointer" onClick={() => stopSending()} />
|
||||
</Row>
|
||||
<Col
|
||||
p={5}
|
||||
mt={4}
|
||||
|
Loading…
Reference in New Issue
Block a user