I have the following custom Modifier: ```fun Modif...
# compose
l
I have the following custom Modifier:
Copy code
fun Modifier.themePadding(
    size: ThemePaddingSize = ThemePaddingSize.Medium
): Modifier = composed {
    val themePadding = LocalThemePadding.current[size]
    padding(themePadding)
}
How can I migrate this to
Modifier.Node
version without using
composed
?