# Add-in icon assets

Drop three PNGs here for the manifest:

- `icon-16.png` — 16×16
- `icon-32.png` — 32×32
- `icon-80.png` — 80×80

Any 16/32/80 PNG works for dev. For convenience, copy from the POC:

```bash
cp ../../../flexigenai-addins/flexigenai-addin/src/assets/flexigen-logo-16.png ./icon-16.png
cp ../../../flexigenai-addins/flexigenai-addin/src/assets/flexigen-logo-32.png ./icon-32.png
cp ../../../flexigenai-addins/flexigenai-addin/src/assets/flexigen-logo-80.png ./icon-80.png
```

The webpack `CopyWebpackPlugin` rule has `noErrorOnMissing: true` so the dev
server will start even without the icons; you'll just see broken icons in the
Office ribbon until you drop them in.
