# AppMultipleSelectDropdown

> Deprecated: Use AppSelect instead.

## Overview

Legacy multi-select dropdown component. This component is deprecated in favor of `AppSelect` which provides better accessibility, features, and API consistency.

---

## Replacement

Use `AppSelect` with `multiple` and an array of values.

```tsx
import { AppSelect } from "laif-ds";

export function Replacement() {
  return (
    <AppSelect
      multiple
      options={[
        { value: "a", label: "Option A" },
        { value: "b", label: "Option B" },
      ]}
      value={["a"]}
      onValueChange={(v) => console.log(v)}
    />
  );
}
```

---

## Notes

- The old component supported search and maxSelectedItems, but `AppSelect` now provides these features with a more robust API and better UX.
- Plan migration to `AppSelect` and remove this component from new code.
