gerhat / material-ui-formik-components

Formik ready material ui components
MIT License
85 stars 13 forks source link

Autocomplete with variant outline #23

Closed ganeshkalal2000 closed 4 years ago

ganeshkalal2000 commented 4 years ago

Hi,

I am just wondering if we can use material UI variant like an outline in autocomplete

Thank you

gerhat commented 4 years ago

Hi @ganeshkalal2000. Yes you can. Here is an example:

<Field
  name="country"
  options={countries}
  component={Autocomplete}
  size="small"
  textFieldProps={{
    label: 'Country',
    variant: 'outlined',
  }}
/>