Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

21 lines
277 B
Markdown

---
icon: material/arrow-up-box
---
I removed all overloads for `ImageVector`, please update your code like following:
#### OLD
```kotlin
DebugDrawer*(
icon = Icons.Default.Info
)
```
#### NEW
```kotlin
DebugDrawer*(
image= { Icon(Icons.Default.Info, null) }
)
```