@moxon6/form-components
Version:
This is small collection of Material-ui fields components,
27 lines (23 loc) • 480 B
JavaScript
import React from "react"
import TextField from "material-ui/TextField"
const style = {
marginTop: 0,
marginLeft: 20,
marginBottom: -8,
marginRight: -10
}
const floatingLabelShrinkStyle = {
fontSize: 20
}
export default props => (
<TextField
{...props}
value={props.value || ''}
style={style}
fullWidth={true}
floatingLabelShrinkStyle={floatingLabelShrinkStyle}
underlineShow={false}
autoComplete="off"
hintText={props.title}
/>
)