# Text

> The text item type.

Source: https://mockflow.com/developers/reference/item-types/text

Send `"type": "text"`. A primitive the editor draws; it has no MCP tool.

### Fields

- `text` (string, required)
- `fontSize` (integer): Defaults to `16`.
- `align` (enum<string>): One of `left`, `center` or `right`. Defaults to `left`.
- `color` (string)
- `bold` (boolean): Defaults to `false`.

## Example

```json
{
  "type": "text",
  "data": {
    "text": "Interview 5 users",
    "fontSize": 16,
    "align": "left",
    "color": "string",
    "bold": false
  }
}
```
