StockFind Brand

Dropdowns

Action menus and option lists

Basic Usage

<Dropdown>
  <Dropdown.Trigger>
    <Button variant="secondary">Actions ▾</Button>
  </Dropdown.Trigger>
  <Dropdown.Popover>
    <Dropdown.Menu>
      <Dropdown.Item id="add">
        <Label>Add to Watchlist</Label>
      </Dropdown.Item>
      <Dropdown.Item id="analyze">
        <Label>Analyze</Label>
      </Dropdown.Item>
      <Separator />
      <Dropdown.Item id="delete" variant="danger">
        <Label>Remove</Label>
      </Dropdown.Item>
    </Dropdown.Menu>
  </Dropdown.Popover>
</Dropdown>

On this page