2022-01-12 10:27:49 +00:00
|
|
|
package dev.inmo.jsuikit.elements
|
2021-12-22 08:38:12 +00:00
|
|
|
|
|
|
|
import androidx.compose.runtime.Composable
|
2022-01-12 13:58:52 +00:00
|
|
|
import dev.inmo.jsuikit.modifiers.UIKitModifier
|
|
|
|
import dev.inmo.jsuikit.modifiers.include
|
2022-01-13 05:55:08 +00:00
|
|
|
import org.jetbrains.compose.web.dom.AttrBuilderContext
|
2021-12-22 08:38:12 +00:00
|
|
|
import org.jetbrains.compose.web.dom.Progress
|
2022-01-13 05:55:08 +00:00
|
|
|
import org.w3c.dom.HTMLProgressElement
|
2021-12-22 08:38:12 +00:00
|
|
|
|
|
|
|
@Composable
|
|
|
|
fun Progress(
|
|
|
|
value: Int,
|
2022-01-13 05:55:08 +00:00
|
|
|
modifiers: Array<UIKitModifier> = emptyArray(),
|
|
|
|
max: Int = 100,
|
|
|
|
attributesCustomizer: AttrBuilderContext<HTMLProgressElement> = {}
|
2021-12-22 08:38:12 +00:00
|
|
|
) {
|
|
|
|
Progress(
|
|
|
|
{
|
|
|
|
classes("uk-progress")
|
|
|
|
include(*modifiers)
|
|
|
|
attr("max", max.toString())
|
|
|
|
attr("value", value.toString())
|
2022-01-13 05:55:08 +00:00
|
|
|
attributesCustomizer()
|
2021-12-22 08:38:12 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|