update withdrawal skeleton

This commit is contained in:
keyan 2024-04-16 16:13:06 -05:00
parent 02fe4d5d92
commit 8eee1c2a71
1 changed files with 10 additions and 5 deletions

View File

@ -31,13 +31,16 @@ export default function Withdrawl () {
export function WithdrawlSkeleton ({ status }) { export function WithdrawlSkeleton ({ status }) {
return ( return (
<> <>
<div className='w-100'> <div className='w-100 form-group'>
<InputSkeleton label='invoice' /> <InputSkeleton label='invoice' />
</div> </div>
<div className='w-100'> <div className='w-100 form-group'>
<InputSkeleton label='max fee' /> <InputSkeleton label='max fee' />
</div> </div>
<InvoiceStatus status={status} /> <InvoiceStatus status={status} />
<div className='w-100 mt-3'>
<Bolt11Info />
</div>
</> </>
) )
} }
@ -108,9 +111,11 @@ function LoadWithdrawl () {
/> />
</div> </div>
<InvoiceStatus variant={variant} status={status} /> <InvoiceStatus variant={variant} status={status} />
<div className='w-100 mt-3'>
<Bolt11Info bolt11={data.withdrawl.bolt11}> <Bolt11Info bolt11={data.withdrawl.bolt11}>
<PrivacyOption wd={data.withdrawl} /> <PrivacyOption wd={data.withdrawl} />
</Bolt11Info> </Bolt11Info>
</div>
</> </>
) )
} }