--- 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) } ) ```