Skip to content

Commit

Permalink
[chore] 코딩 컨벤션 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwon2724 committed Dec 7, 2024
1 parent 0f2b075 commit 29f4d5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fun PokitInput(
state = state,
resourceId = icon.resourceId,
onClick = onClickIcon,
applyInputDesignSystem = applyInputDesignSystem,
applyInputDesignSystem = applyInputDesignSystem
)
Box(modifier = Modifier.width(8.dp))
}
Expand All @@ -103,7 +103,7 @@ fun PokitInput(
state = state,
resourceId = icon.resourceId,
onClick = onClickIcon,
applyInputDesignSystem = applyInputDesignSystem,
applyInputDesignSystem = applyInputDesignSystem
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.size
import androidx.compose.material3.Icon
import androidx.compose.material3.LocalContentColor
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
Expand Down Expand Up @@ -45,7 +44,7 @@ internal fun PokitInputIcon(
@Composable
private fun getColor(
state: PokitInputState,
applyInputDesignSystem: Boolean = true
applyInputDesignSystem: Boolean = true,
): Color {
return when (state) {
PokitInputState.DEFAULT -> PokitTheme.colors.iconSecondary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fun LabeledInput(
icon = if (inputText.isNotEmpty()) {
PokitInputIcon(
position = PokitInputIconPosition.RIGHT,
resourceId = R.drawable.icon_24_xs,
resourceId = R.drawable.icon_24_xs
)
} else {
null
Expand All @@ -88,7 +88,7 @@ fun LabeledInput(
},
isError = isError,
enable = enable,
readOnly = readOnly,
readOnly = readOnly
)

Spacer(modifier = Modifier.height(4.dp))
Expand Down

0 comments on commit 29f4d5b

Please sign in to comment.