# FieldLabel
A helper component to render Field Labels with/without help text as required

Where help text is included, a tooltipId must be passed

## Basic Usage
```javascript
import { Field } from 'react-final-form'
import { FieldLabel } from '@k-int/stripes-kint-components';
import { TextField } from '@folio/stripes/components'
const MyComponent = () => {
  return (
    <Field
      component={TextField}
      label={
        <FieldLabel
          label="My label"
          helpText="My help text"
          tooltipId='my-field-label-tooltip'
        />
      }
      name="my-field"
    />
  )
}
```