mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-16 21:33:50 +00:00
18 lines
377 B
Kotlin
18 lines
377 B
Kotlin
package dev.inmo.jsuikit.modifiers
|
|
|
|
sealed class UIKitClose(
|
|
override val classes: Array<String> = emptyArray(),
|
|
override val otherAttrs: Map<String, String> = emptyMap()
|
|
) : UIKitModifier {
|
|
|
|
object Large : UIKitClose(
|
|
arrayOf("uk-close-large")
|
|
)
|
|
|
|
companion object : UIKitClose(
|
|
arrayOf("uk-close"),
|
|
mapOf("uk-close" to "")
|
|
)
|
|
|
|
}
|