Simple Items List with highlight support

```js
const items = [
  { value: "one", label: "One", highlight: true },
  { value: "two", label: "Two" },
  { value: "three", label: "Three", highlight: true },
  { value: "four", label: "Four" }
];

<List items={items} />;
```
