Files
kotlin-css-generator/src/commonMain/kotlin/nl/astraeus/css/properties/EmptyCells.kt
2021-05-11 17:26:08 +02:00

15 lines
272 B
Kotlin

package nl.astraeus.css.properties
class EmptyCells(
value: String
) : CssProperty(value) {
companion object {
val show = EmptyCells("show")
val hide = EmptyCells("hide")
val initial = EmptyCells("initial")
val inherit = EmptyCells("inherit")
}
}