Skip to content

Commit

Permalink
[REFACTOR/#19] leftIconColor 기본값 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Jul 9, 2024
1 parent 5ea9f2b commit 4af2441
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 @@ -32,6 +32,6 @@ fun NameTextField(
maxTextLength = 12,
helperMessage = helperMessage,
helperIcon = helperIcon,
helperColor = helperColor
helperColor = helperColor,
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.input.ImeAction
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.theme.Grey300
import com.terning.core.designsystem.theme.TerningMain
import com.terning.core.designsystem.theme.TerningTheme
import com.terning.core.designsystem.theme.White

Expand All @@ -35,12 +36,12 @@ fun TerningBasicTextField(
textStyle: TextStyle,
textColor: Color,
hintColor: Color,
leftIconColor: Color,
drawLineColor: Color,
helperColor: Color,
cursorBrush: Brush,
strokeWidth: Float = 1f,
leftIcon: Int? = null,
leftIconColor: Color = TerningMain,
maxTextLength: Int? = null,
showTextLength: Boolean = false,
hint: String = "",
Expand Down

0 comments on commit 4af2441

Please sign in to comment.