PlatformIcon

@ApiStatus.ScheduledForRemoval(inVersion = "Before 1.0")
@Composable
fun PlatformIcon(key: IntelliJIconKey, contentDescription: String?, modifier: Modifier = Modifier, tint: Color = Color.Unspecified, hint: PainterHint)

Deprecated

Use Icon directly, this doesn't have any advantage over it anymore.

Replace with

import com.jewel.ui.component.Icon
Icon(key, contentDescription, modifier, tint, hint)

@ApiStatus.ScheduledForRemoval(inVersion = "Before 1.0")
@Composable
fun PlatformIcon(key: IntelliJIconKey, contentDescription: String?, modifier: Modifier = Modifier, tint: Color = Color.Unspecified, vararg hints: PainterHint)

Deprecated

Use Icon directly, this doesn't have any advantage over it anymore.

Replace with

import com.jewel.ui.component.Icon
Icon(key, contentDescription, modifier, tint, hints)