Skip to main content
Muted/secondary text for less prominent information.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Muted",
      "default": "Muted",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "content": {
      "description": "Text content",
      "type": "string"
    },
    "bold": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "Render text in bold"
    },
    "italic": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "Render text in italic"
    }
  },
  "required": [
    "type",
    "content"
  ]
}