Skip to content

Commit

Permalink
chore: ktlintFormat 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
syb8200 committed Jan 1, 2024
1 parent 1b4537a commit 5407fbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.susu.core.designsystem.component.badge
import androidx.compose.runtime.Composable
import androidx.compose.ui.unit.Dp
import com.susu.core.designsystem.theme.SusuTheme

data class BadgePadding(
val horizontalPadding: Dp,
val verticalPadding: Dp,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fun SusuBadge(
modifier = modifier.padding(
horizontal = horizontalPadding,
vertical = verticalPadding,
)
),
)
}
}
Expand All @@ -46,7 +46,7 @@ fun SusuBadge(
fun SusuSmallBadgePreview() {
SusuTheme {
Row(
horizontalArrangement = Arrangement.spacedBy(20.dp)
horizontalArrangement = Arrangement.spacedBy(20.dp),
) {
Column(
verticalArrangement = Arrangement.spacedBy(8.dp),
Expand Down

0 comments on commit 5407fbc

Please sign in to comment.