fun ServiceEvents()

in ui-components/src/commonMain/kotlin/org/jetbrains/kotlinconf/ui/components/ServiceEvents.kt [84:100]


fun ServiceEvents(
    events: List<ServiceEventData>,
    modifier: Modifier = Modifier,
) {
    Column(
        modifier
            .clip(KotlinConfTheme.shapes.roundedCornerMd)
            .background(KotlinConfTheme.colors.tileBackground)
    ) {
        events.forEachIndexed { index, event ->
            if (index > 0) {
                Divider(1.dp, KotlinConfTheme.colors.strokePale)
            }
            ServiceEventItem(event)
        }
    }
}