Repository URL to install this package:
Version:
0.14.1 ▾
|
import React from 'react'
import { Button } from 'atoms/Button'
import { ObserverInput } from 'src/forms'
import { TextBox } from 'src/inputs/TextBox'
export const Wrap = props => <div className={'eh-wrap'} {...props} />
export const SubmitButton = styled.withComponent(Button) ``
export class Input extends ObserverInput {
Wrap = Wrap
Input = TextBox
}