zepio/app/components/wallet-summary.mdx

25 lines
491 B
Plaintext

---
name: Wallet Summary
---
import { Playground, PropsTable } from 'docz'
import { WalletSummaryComponent } from './wallet-summary.js'
import { DoczWrapper } from '../theme.js'
# Wallet Summary
<PropsTable of={WalletSummaryComponent} />
## Basic usage
<Playground>
<DoczWrapper>
{() => (
<div style={{ width: '700px' }}>
<WalletSummaryComponent total={5000} shielded={2500} transparent={2500} dollarValue={56} />
</div>
)}
</DoczWrapper>
</Playground>