Dropdown

Default

Example:

Config:

{
  "className": "p-0",
  "buttonLabel": "Product Overview",
  "id": "example-dropdown",
  "options": [
    {
      "label": "Product Overview",
      "value": "product-overview"
    },
    {
      "label": "Price/NAV",
      "value": "price-nav"
    },
    {
      "label": "Performance",
      "value": "performance"
    },
    {
      "label": "Recent Distributions",
      "value": "recent-distributions"
    },
    {
      "label": "Fund Literature",
      "value": "fund-literature"
    }
  ]
}

With 1st option as Label

Example:

Config:

{
  "className": "p-0",
  "buttonLabel": null,
  "id": "example-dropdown",
  "options": [
    {
      "label": "Product Overview",
      "value": "product-overview"
    },
    {
      "label": "Price/NAV",
      "value": "price-nav"
    },
    {
      "label": "Performance",
      "value": "performance"
    },
    {
      "label": "Recent Distributions",
      "value": "recent-distributions"
    },
    {
      "label": "Fund Literature",
      "value": "fund-literature"
    }
  ]
}