How do I disable spell checking in a MUI `TextField` component?

I’m using a TextField component. How do I disable its spell checking?

Set the spellcheck attribute to "false" on the underlying HTML element:

<TextField
  slotProps={{
    htmlInput: {
      spellCheck: "false",
    },
  }}
/>