13 lines
230 B
Kotlin
13 lines
230 B
Kotlin
package nl.astraeus.css.properties
|
|
|
|
class InitialInherit(
|
|
value: String
|
|
) : CssProperty(value) {
|
|
|
|
companion object {
|
|
val initial = InitialInherit("initial")
|
|
val inherit = InitialInherit("inherit")
|
|
}
|
|
|
|
}
|