zepio/app/components/input.mdx

36 lines
613 B
Plaintext

---
name: Input
---
import { Playground, PropsTable } from 'docz'
import { InputComponent } from './input.js'
import { DoczWrapper } from '../theme.js'
# Input
<PropsTable of={InputComponent} />
## Text Input
<Playground>
<DoczWrapper>
{() => <InputComponent inputType="input" value="Hello World!" onChange={console.log} />}
</DoczWrapper>
</Playground>
## Textarea
<Playground>
<DoczWrapper>
{() => (
<InputComponent
inputType="textarea"
value="I'm Zcash Electron Wallet"
onChange={console.log}
rows={10}
/>
)}
</DoczWrapper>
</Playground>