UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

59 lines (54 loc) 1.26 kB
import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import Input from '@material-ui/core/Input'; const styles = theme => ({ container: { display: 'flex', flexWrap: 'wrap', }, input: { margin: theme.spacing.unit, }, }); function Inputs(props) { const { classes } = props; return ( <div className={classes.container}> <Input defaultValue="Hello world" className={classes.input} inputProps={{ 'aria-label': 'Description', }} /> <Input placeholder="Placeholder" className={classes.input} inputProps={{ 'aria-label': 'Description', }} /> <Input value="Disabled" className={classes.input} disabled inputProps={{ 'aria-label': 'Description', }} /> <Input defaultValue="Error" className={classes.input} error inputProps={{ 'aria-label': 'Description', }} /> </div> ); } Inputs.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(Inputs);