Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created May 12, 2019 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/3f9d999aa48c5786cd4cc5379773806f to your computer and use it in GitHub Desktop.
Save luandevpro/3f9d999aa48c5786cd4cc5379773806f to your computer and use it in GitHub Desktop.
import React from 'react';
import { TextField } from '@material-ui/core';
export default (props) => {
return (
<TextField
id="input-with-icon-grid"
label={props.label}
name={props.name}
style={{ width: props.width, marginTop: props.marginTop }}
{...props.field}
/>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment