# ActionListItem - 操作列表项

## 说明

操作项组件，用于列表底部的操作按钮（如"删除设备"、"重置"等）。放在 ListCard 内部使用。

## 属性

| 属性 | 说明 | 类型 | 默认值 | 必填 |
|------|------|------|--------|------|
| **title** | 操作文本 | `string` | - | 是 |
| **status** | 操作状态：normal（色系色文字）、warning（红色文字） | `'normal' \| 'warning'` | `'normal'` | 否 |
| **colorType** | 色系颜色（仅 status=normal 时生效） | `ColorType` | `'green'` | 否 |
| **onPress** | 点击回调 | `() => void` | - | 否 |
| **disabled** | 禁用状态 | `boolean` | `false` | 否 |

## 使用示例

```tsx
import { ActionListItem } from '@hyperOS/components/listItem';

// 普通操作
<ActionListItem title="重置设备" onPress={() => {}} />

// 警告操作（红色文字）
<ActionListItem title="删除设备" status="warning" onPress={() => {}} />

// 不同色系
<ActionListItem title="蓝色操作" colorType="blue" onPress={() => {}} />
```
