21 lines
277 B
Markdown
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) }
|
|
)
|
|
``` |