Label

A label used to identify a form field.

FormControlLabel

Used with a single control such as Radio or Checkbox

<FormControlLabel
  labelPlacement="left"
  label="label to the left"
  control={<TextField />}
/>
<FormControlLabel
  labelPlacement="right"
  label="label to the right"
  control={<TextField />}
/>
<FormControlLabel
  labelPlacement="above"
  label="label above"
  control={<TextField />}
/>
<FormControlLabel
  labelPlacement="below"
  label="label below"
  control={<TextField />}
/>
<FormControlLabel disabled label="disabled label" control={<TextField />} />
<FormControlLabel required label="required label" control={<TextField />} />

API