Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import React from 'react';
  2. import { TextField } from '@material-ui/core';
  3.  
  4. export default (props) => {
  5. return (
  6. <TextField
  7. id="input-with-icon-grid"
  8. label={props.label}
  9. name={props.name}
  10. style={{ width: props.width, marginTop: props.marginTop }}
  11. {...props.field}
  12. />
  13. );
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement