global changes in packages

This commit is contained in:
2022-01-12 16:27:49 +06:00
parent a68b4c7d8e
commit 6c5dbdba87
44 changed files with 57 additions and 54 deletions

View File

@@ -0,0 +1,14 @@
package dev.inmo.jsuikit.modifers
sealed class UIKitButton(suffix: String) : UIKitModifier {
override val classes: Array<String> = arrayOf("uk-button-$suffix")
sealed class Type(suffix: String) : UIKitButton(suffix) {
object Default : Type("default")
object Primary : Type("primary")
object Secondary : Type("secondary")
object Danger : Type("danger")
object Text : Type("text")
object Link : Type("link")
}
}