Skip to main content
A container that groups buttons with merged borders.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "ButtonGroup",
      "default": "ButtonGroup",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "Component"
      }
    },
    "orientation": {
      "default": "horizontal",
      "description": "Layout direction: horizontal or vertical",
      "enum": [
        "horizontal",
        "vertical"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ]
}