{
  "$schema": "https://playbook.powerapp.cloud/schemas/kit-schema.json",
  "name": "ProgressStep",
  "description": "ProgressStep component",
  "platforms": [
    "react",
    "rails"
  ],
  "props": {
    "orientation": {
      "type": "enum",
      "platforms": [
        "react",
        "rails"
      ],
      "values": [
        "horizontal",
        "vertical"
      ],
      "default": "horizontal"
    },
    "icon": {
      "type": "boolean",
      "platforms": [
        "react",
        "rails"
      ],
      "default": false
    },
    "showIcon": {
      "type": "boolean",
      "platforms": [
        "react",
        "rails"
      ],
      "default": false
    },
    "variant": {
      "type": "string",
      "platforms": [
        "react",
        "rails"
      ],
      "values": [
        "default",
        "tracker"
      ],
      "default": "default"
    },
    "color": {
      "type": "string",
      "platforms": [
        "react",
        "rails"
      ],
      "values": [
        "primary",
        "info"
      ],
      "default": "primary"
    }
  },
  "globalProps": true,
  "usage": {
    "react": {
      "import": "import { ProgressStep } from 'playbook-ui'",
      "example": "<ProgressStep orientation=\"horizontal\" variant=\"default\"></ProgressStep>"
    },
    "rails": {
      "import": null,
      "example": "<%= pb_rails(\"progress_step\", props: { orientation: \"horizontal\", variant: \"default\" }) %>"
    }
  }
}
