# MoreActionsItem

**Category:** Common/Types

## API

### Overview

Defines an action item in the [`MoreActions`](./?path=/story/features-actions-moreactions--more-actions) dropdown menu. Each item has a `text` label, an `onClick` handler, and optional properties like `prefixIcon`, `skin` (`dark` or `destructive`), `disabled`, `subtitle`, and `dataHook`.

### Description

Represents an item within the [More Actions](./?path=/story/features-actions-more-actions--more-actions) menu, defining its appearance and behavior.

### Extends

[`PopoverMenuItem`](https://www.docs.wixdesignsystem.com/?path=/story/components-overlays--popovermenu)

### Props

| Prop | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `text` | `string` | Yes | - | The text label of the action item. This property is required. |
| `onClick` | `(params?: Record<string, any> \| undefined) => unknown` | Yes | - | The functionality for when the user clicks the action item. This property is required. |
| `prefixIcon` | `ReactNode` | No | - | An icon to display before the text. |
| `suffixIcon` | `ReactNode` | No | - | An icon displayed after the text. |
| `skin` | `"dark" \| "destructive"` | No | - | The visual style of the action item. Options are 'dark' for the standard appearance or 'destructive' for a red text and red hover effect. |
| `dataHook` | `string` | No | - | A data hook for testing purposes. This optional property can be used to identify the element in tests. |
| `disabled` | `boolean` | No | - | This property can be used to disable the action item both visually and functionally. |
| `subtitle` | `string` | No | - | A subtitle displayed under the text. |
| `biName` | `string` | No | - | The name of the CTA for BI event. |
| `biAdditionalInfo` | `string` | No | - | Additional info for CTAClick BI event. |

