# XWUIRecentlyViewedStrip

A horizontal strip of recently viewed products: a scrollable row of product cards (thumbnail, name, price); clicking a card fires `onItemClick` so a host page can navigate to that product. Renders an empty-state message when `data.items` is empty.

## Events

| Event | Callback | Subscriber | `detail` |
|---|---|---|---|
| `xwui-recently-viewed-strip:item-click` | `onItemClick` | `onItemClick(handler)` | `{ itemId }` |

## Usage

```ts
import { XWUIRecentlyViewedStrip } from '@exonware/xwui/industry';

const strip = new XWUIRecentlyViewedStrip(host, {
  items: [{ id: 'p1', name: 'Leather Backpack', price: 129 }],
});

strip.onItemClick((itemId) => router.navigate(`/products/${itemId}`));
```

```api
```
