{
  "$schema": "http://json-schema.org/draft-07/schema",
  "type": "object",
  "required": [],
  "properties": {
    "buttonType": {
      "type": "string",
      "enum": [
        "primary",
        "secondary",
        "iconOnly"
      ],
      "default": "primary"
    },
    "size": {
      "type": "string",
      "enum": [
        "s",
        "m",
        "l"
      ],
      "default": "m"
    },
    "arrow": {
      "type": "string",
      "enum": [
        "right",
        "left"
      ]
    },
    "handleTrigger": {
      "description": "`() => void` ",
      "typeof": "function",
      "tsType": "() => void",
      "default": "() => {}"
    },
    "isDisabled": {
      "type": "boolean"
    },
    "children": {
      "typeof": "function",
      "tsType": "React.ReactNode"
    }
  },
  "description": ""
}