## [@sps-woodland/add-to-list](https://github.com/SPSCommerce/woodland/tree/master/packages/@sps-woodland/add-to-list#readme)

SPS Woodland Design System Add to List.

> **Heads up — this is a wrapper package.** The component source now lives in
> [`@sps-woodland/core`](../react). This package re-exports from the
> mono-package so existing imports keep working, but new code should prefer the
> mono-package paths.

### Preferred imports (mono-package)

```ts
import { AddToList } from "@sps-woodland/core/add-to-list";

import "@sps-woodland/core/add-to-list/style.css";
```

Single-component family — no flat subpath, the barrel _is_ the only path.
`AddToList` is barrel-only (family-name clash). The internal `ItemsList` and
`ListItem` helpers are not exported.

### Legacy imports (still supported)

```ts
import { AddToList } from "@sps-woodland/add-to-list";
import "@sps-woodland/add-to-list/style.css";
```
