All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ink.ui.render.web.Sentiments.kt Maven / Gradle / Ivy

package ink.ui.render.web

import ink.ui.structures.Sentiment

fun Sentiment.toCssClass(): String {
    return when (this) {
        Sentiment.Nominal -> "nominal"
        Sentiment.Primary -> "primary"
        Sentiment.Positive -> "positive"
        Sentiment.Negative -> "negative"
        Sentiment.Caution -> "caution"
        Sentiment.Idle -> "idle"
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy