Ayfri
object FooterStyle : StyleSheet() { val buttonColor by variable<CSSColorValue>() val button by style { backgroundColor(buttonColor.value()) ... } } // somewhere in a @Composable A(href = "/my-route", { target(ATarget.blank) classes(FooterStyle.button) style { FooterStye.buttonColor(Color.gray) } }) { Text("Download") }
A modern programming language that makes developers happier.