@momo-kits/native-kits 0.163.1-beta.2 → 0.163.1-beta.3-debug

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/build.gradle.kts +11 -0
  2. package/compose/build.gradle.kts +189 -0
  3. package/compose/build.gradle.kts.backup +189 -0
  4. package/compose/compose.podspec +47 -0
  5. package/compose/src/androidMain/kotlin/vn/momo/kits/navigation/ScrollToTop.android.kt +6 -0
  6. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +123 -0
  7. package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
  8. package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
  9. package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
  10. package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
  11. package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
  12. package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
  13. package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
  14. package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
  15. package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
  16. package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
  17. package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
  18. package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
  19. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
  20. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
  21. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +52 -0
  22. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +108 -0
  23. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +183 -0
  24. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +207 -0
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +39 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +294 -0
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +826 -0
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +107 -0
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +378 -0
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Avatar.kt +157 -0
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +82 -0
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +338 -0
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +175 -0
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +354 -0
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +113 -0
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +89 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +128 -0
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +209 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -0
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +140 -0
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +188 -0
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +112 -0
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +477 -0
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +114 -0
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +214 -0
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +240 -0
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +216 -0
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +259 -0
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +180 -0
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +343 -0
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Loader.kt +108 -0
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +84 -0
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +328 -0
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +97 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +310 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +59 -0
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Rating.kt +87 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +134 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +269 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +253 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +94 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +175 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +360 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
  108. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +557 -0
  109. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +155 -0
  110. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +223 -0
  111. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  112. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
  113. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +319 -0
  114. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
  115. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
  116. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
  117. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
  118. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
  119. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +128 -0
  120. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +70 -0
  121. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +58 -0
  122. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  123. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
  124. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
  125. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
  126. package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
  127. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +184 -0
  128. package/gradle/libs.versions.toml +67 -0
  129. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  130. package/gradle/wrapper/gradle-wrapper.properties +8 -0
  131. package/gradle.properties +26 -0
  132. package/gradlew +252 -0
  133. package/gradlew.bat +94 -0
  134. package/local.properties +8 -0
  135. package/package.json +1 -1
  136. package/settings.gradle.kts +64 -0
@@ -0,0 +1,199 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.animation.core.Animatable
4
+ import androidx.compose.animation.core.tween
5
+ import androidx.compose.foundation.background
6
+ import androidx.compose.foundation.border
7
+ import androidx.compose.foundation.gestures.detectHorizontalDragGestures
8
+ import androidx.compose.foundation.layout.*
9
+ import androidx.compose.foundation.shape.RoundedCornerShape
10
+ import androidx.compose.runtime.Composable
11
+ import androidx.compose.runtime.remember
12
+ import androidx.compose.runtime.rememberCoroutineScope
13
+ import androidx.compose.ui.Alignment
14
+ import androidx.compose.ui.Modifier
15
+ import androidx.compose.ui.draw.clip
16
+ import androidx.compose.ui.graphics.Color
17
+ import androidx.compose.ui.input.pointer.pointerInput
18
+ import androidx.compose.ui.platform.LocalDensity
19
+ import androidx.compose.ui.unit.Dp
20
+ import androidx.compose.ui.unit.IntOffset
21
+ import androidx.compose.ui.unit.dp
22
+ import kotlinx.coroutines.launch
23
+ import vn.momo.kits.application.IsShowBaseLineDebug
24
+ import vn.momo.kits.const.AppTheme
25
+ import vn.momo.kits.const.Colors
26
+ import vn.momo.kits.const.Typography
27
+ import vn.momo.kits.modifier.activeOpacityClickable
28
+ import vn.momo.kits.modifier.conditional
29
+ import kotlin.math.roundToInt
30
+
31
+ data class SwipeAction(
32
+ val label: String = "",
33
+ val icon: String = "",
34
+ val onPress: () -> Unit = {},
35
+ val backgroundColor: Color? = null,
36
+ )
37
+
38
+ private val ACTION_WIDTH = 56.dp
39
+
40
+ @Composable
41
+ fun Swipe(
42
+ modifier: Modifier = Modifier,
43
+ leftActions: List<SwipeAction> = emptyList(),
44
+ rightActions: List<SwipeAction> = emptyList(),
45
+ height: Dp = 56.dp,
46
+ itemRadius: Dp = 0.dp,
47
+ onSwipeableOpen: () -> Unit = {},
48
+ onSwipeableClose: () -> Unit = {},
49
+ onSwipeableLeftOpen: () -> Unit = {},
50
+ onSwipeableRightOpen: () -> Unit = {},
51
+ content: @Composable () -> Unit = {},
52
+ ) {
53
+ val theme = AppTheme.current
54
+ val density = LocalDensity.current
55
+ val scope = rememberCoroutineScope()
56
+
57
+ val left = leftActions.take(3)
58
+ val right = rightActions.take(3)
59
+
60
+ val leftWidthPx = with(density) { (ACTION_WIDTH * left.size).toPx() }
61
+ val rightWidthPx = with(density) { (ACTION_WIDTH * right.size).toPx() }
62
+
63
+ val offsetX = remember { Animatable(0f) }
64
+
65
+ val shape = remember(itemRadius) {
66
+ if (itemRadius > 0.dp) RoundedCornerShape(itemRadius) else RoundedCornerShape(0.dp)
67
+ }
68
+
69
+ fun snapToClosest() {
70
+ scope.launch {
71
+ val current = offsetX.value
72
+ val target = when {
73
+ current > leftWidthPx * 0.5f && left.isNotEmpty() -> {
74
+ onSwipeableLeftOpen()
75
+ onSwipeableOpen()
76
+ leftWidthPx
77
+ }
78
+ current < -rightWidthPx * 0.5f && right.isNotEmpty() -> {
79
+ onSwipeableRightOpen()
80
+ onSwipeableOpen()
81
+ -rightWidthPx
82
+ }
83
+ else -> {
84
+ onSwipeableClose()
85
+ 0f
86
+ }
87
+ }
88
+ offsetX.animateTo(target, tween(200))
89
+ }
90
+ }
91
+
92
+ Box(
93
+ modifier = modifier
94
+ .fillMaxWidth()
95
+ .height(height)
96
+ .conditional(IsShowBaseLineDebug) { border(1.dp, Colors.blue_03) }
97
+ ) {
98
+ // Left actions
99
+ if (left.isNotEmpty()) {
100
+ Row(
101
+ modifier = Modifier
102
+ .align(Alignment.CenterStart)
103
+ .fillMaxHeight()
104
+ ) {
105
+ left.forEach { action ->
106
+ SwipeActionButton(
107
+ action = action,
108
+ width = ACTION_WIDTH,
109
+ height = height,
110
+ shape = shape,
111
+ defaultColor = theme.colors.primary,
112
+ )
113
+ }
114
+ }
115
+ }
116
+
117
+ // Right actions
118
+ if (right.isNotEmpty()) {
119
+ Row(
120
+ modifier = Modifier
121
+ .align(Alignment.CenterEnd)
122
+ .fillMaxHeight()
123
+ ) {
124
+ right.forEach { action ->
125
+ SwipeActionButton(
126
+ action = action,
127
+ width = ACTION_WIDTH,
128
+ height = height,
129
+ shape = shape,
130
+ defaultColor = theme.colors.error.primary,
131
+ )
132
+ }
133
+ }
134
+ }
135
+
136
+ // Main content
137
+ Box(
138
+ modifier = Modifier
139
+ .fillMaxWidth()
140
+ .height(height)
141
+ .offset { IntOffset(offsetX.value.roundToInt(), 0) }
142
+ .clip(shape)
143
+ .background(theme.colors.background.surface)
144
+ .pointerInput(left.size, right.size) {
145
+ detectHorizontalDragGestures(
146
+ onDragEnd = { snapToClosest() },
147
+ onDragCancel = { snapToClosest() },
148
+ ) { _, dragAmount ->
149
+ scope.launch {
150
+ val newOffset = offsetX.value + dragAmount
151
+ val clamped = newOffset.coerceIn(-rightWidthPx, leftWidthPx)
152
+ offsetX.snapTo(clamped)
153
+ }
154
+ }
155
+ }
156
+ ) {
157
+ content()
158
+ }
159
+ }
160
+ }
161
+
162
+ @Composable
163
+ private fun SwipeActionButton(
164
+ action: SwipeAction,
165
+ width: Dp,
166
+ height: Dp,
167
+ shape: RoundedCornerShape,
168
+ defaultColor: Color,
169
+ ) {
170
+ val bgColor = action.backgroundColor ?: defaultColor
171
+
172
+ Box(
173
+ modifier = Modifier
174
+ .width(width)
175
+ .height(height)
176
+ .clip(shape)
177
+ .background(bgColor)
178
+ .activeOpacityClickable(onClick = action.onPress),
179
+ contentAlignment = Alignment.Center,
180
+ ) {
181
+ Column(horizontalAlignment = Alignment.CenterHorizontally) {
182
+ if (action.icon.isNotEmpty()) {
183
+ Icon(
184
+ source = action.icon,
185
+ size = 20.dp,
186
+ color = Colors.black_01,
187
+ )
188
+ }
189
+ if (action.label.isNotEmpty()) {
190
+ Text(
191
+ text = action.label,
192
+ style = Typography.labelSMedium,
193
+ color = Colors.black_01,
194
+ maxLines = 1,
195
+ )
196
+ }
197
+ }
198
+ }
199
+ }
@@ -0,0 +1,91 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.foundation.background
4
+ import androidx.compose.foundation.border
5
+ import androidx.compose.foundation.clickable
6
+ import androidx.compose.foundation.layout.*
7
+ import androidx.compose.foundation.shape.RoundedCornerShape
8
+ import androidx.compose.runtime.Composable
9
+ import androidx.compose.runtime.remember
10
+ import androidx.compose.ui.Alignment
11
+ import androidx.compose.ui.Modifier
12
+ import androidx.compose.ui.draw.clip
13
+ import androidx.compose.ui.graphics.Color
14
+ import androidx.compose.ui.unit.dp
15
+ import vn.momo.kits.application.IsShowBaseLineDebug
16
+ import vn.momo.kits.const.Colors
17
+ import vn.momo.kits.const.Spacing
18
+ import vn.momo.kits.modifier.conditional
19
+ import vn.momo.kits.modifier.setAutomationId
20
+
21
+ private val switchShape = RoundedCornerShape(20.dp)
22
+ private val circleShape = RoundedCornerShape(percent = 100)
23
+
24
+ @Composable
25
+ fun Switch(
26
+ value: Boolean = false,
27
+ onChange: (Boolean) -> Unit = {},
28
+ disabled: Boolean = false,
29
+ title: String? = "",
30
+ accessibilityId: String? = ""
31
+ ) {
32
+ // Memoize color calculations to avoid repeated conditional logic
33
+ val colors = remember(value, disabled) {
34
+ val circleColor = if (value) Colors.black_01 else Colors.black_03
35
+ val bgColor = when {
36
+ disabled && value -> Colors.green_09
37
+ disabled && !value -> Colors.black_05
38
+ value -> Colors.green_03
39
+ else -> Colors.black_07
40
+ }
41
+ circleColor to bgColor
42
+ }
43
+
44
+ val (circleBackgroundColor, backgroundColor) = colors
45
+
46
+ // Memoize automation ID to avoid string concatenation on every render
47
+ val automationIdValue = remember(accessibilityId, title, value) {
48
+ accessibilityId ?: "toggle_${title ?: "unknown"}_$value"
49
+ }
50
+
51
+ // Memoize alignment calculation
52
+ val contentAlignment = remember(value) {
53
+ if (value) Alignment.CenterEnd else Alignment.CenterStart
54
+ }
55
+
56
+ // Memoize click handler to avoid lambda recreation
57
+ val onClickHandler = remember(onChange, value) {
58
+ { onChange(!value) }
59
+ }
60
+
61
+ Box(modifier = Modifier.setAutomationId(automationIdValue)) {
62
+ Box(
63
+ modifier = Modifier
64
+ .width(38.dp)
65
+ .height(20.dp)
66
+ .border(0.dp, Color.Unspecified, switchShape)
67
+ .background(backgroundColor, switchShape)
68
+ .conditional(IsShowBaseLineDebug) {
69
+ border(1.dp, Colors.blue_03)
70
+ }
71
+ .clip(switchShape)
72
+ .clickable(enabled = !disabled, onClick = onClickHandler)
73
+ .padding(horizontal = Spacing.XS),
74
+ contentAlignment = contentAlignment
75
+ ) {
76
+ Box(
77
+ modifier = Modifier
78
+ .size(14.dp)
79
+ .border(0.dp, Color.Unspecified, circleShape)
80
+ .background(circleBackgroundColor, circleShape),
81
+ contentAlignment = Alignment.Center
82
+ ) {
83
+ Box(
84
+ Modifier
85
+ .size(6.dp)
86
+ .background(backgroundColor, circleShape)
87
+ )
88
+ }
89
+ }
90
+ }
91
+ }