zepio/app/components/qrcode.mdx

29 lines
362 B
Plaintext
Raw Normal View History

2018-12-05 10:37:42 -08:00
---
name: QRCode
---
import { Playground, PropsTable } from 'docz'
import { QRCode } from './qrcode.js'
# QRCode
## Properties
2018-12-05 10:37:42 -08:00
<PropsTable of={QRCode} />
2019-02-04 20:41:45 -08:00
## Basic Usage
2018-12-05 10:37:42 -08:00
<Playground>
<QRCode value='https://z.cash.foundation' />
2018-12-05 10:37:42 -08:00
</Playground>
2019-02-04 20:41:45 -08:00
## Custom Size
2018-12-05 10:37:42 -08:00
<Playground>
<QRCode
value='https://z.cash.foundation'
size={500}
/>
2018-12-05 10:37:42 -08:00
</Playground>