More properties
This commit is contained in:
15
src/commonMain/kotlin/nl/astraeus/css/properties/Hyphens.kt
Normal file
15
src/commonMain/kotlin/nl/astraeus/css/properties/Hyphens.kt
Normal file
@@ -0,0 +1,15 @@
|
||||
package nl.astraeus.css.properties
|
||||
|
||||
class Hyphens(
|
||||
value: String
|
||||
) : CssProperty(value) {
|
||||
|
||||
companion object {
|
||||
fun none() = Hyphens("none")
|
||||
fun manual() = Hyphens("manual")
|
||||
fun auto() = Hyphens("auto")
|
||||
fun initial() = Hyphens("initial")
|
||||
fun inherit() = Hyphens("inherit")
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user