# ActionSubItem

**Category:** Common/Types

## Design

### Description

Pass `ActionSubItem` to PrimaryActions, SecondaryActions , or in [MultiBulkActionToolbar](./?path=/story/features-actions-bulk-actions--multibulkactiontoolbar&tab=API).

| Name             | Is optional | Type                                | Description                                                                                                                                                      |
| ---------------- | ----------- | ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| onClick          | yes         | any                                 | A callback that is called each time the button is clicked.                                                                                                       |
| label            | yes         | string                              | Button label.                                                                                                                                                    |
| prefixIcon       | yes         | IconElement                         | An icon displayed before the button text.                                                                                                                        |
| tooltip          | yes         | string                              | Tooltip text.                                                                                                                                                    |
| disabled         | yes         | boolean                             | Disabled flag.                                                                                                                                                   |
| dataHook         | yes         | string                              | Data-hook for a button.                                                                                                                                          |
| subItems         | yes         | ActionSubItem[] / ActionSubItem[][] | Array of action items to render in a popover menu. 
 Actions can be grouped by using an array of arrays, 
 and a divider will be added between each group. |
| popoverMenuProps | yes         | Partial           | [PopoverMenu](https://www.docs.wixdesignsystem.com/?path=/story/components-overlays--popovermenu) props to pass to the 'More Action' popover menu.               |


