Component for displaying tool status with indicators and localized text
- Status Indicators: Shows visual indicators for success, error, cancelled and loading states
- Internationalization: Supports multiple languages (English and Russian)
- Lightweight: Simple display component with no internal state management
import {ToolStatus} from '@/components/molecules/ToolStatus';
<ToolStatus status="success" />;
<ToolStatus status="error" />;
<ToolStatus status="loading" />;
<ToolStatus status="cancelled" />;| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
status |
ToolStatus |
- | - | Tool status to display |
className |
string |
- | - | Additional CSS class name |
qa |
string |
- | - | Data QA attribute |