Skip to main content
Visual divider component.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Separator",
      "default": "Separator",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "orientation": {
      "default": "horizontal",
      "description": "Separator orientation",
      "enum": [
        "horizontal",
        "vertical"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ]
}