Base
The base type shared by all fields.
Params
| Param | Example | Type | Status | 
|---|---|---|---|
| label | label: "Title" | String | - | 
Optional params
label
Set the label for the input. Puck will use the key if not provided.
const config = {
  components: {
    Example: {
      fields: {
        items: {
          label: "My Field",
          // ...
        },
      },
      // ...
    },
  },
};