Skip to content

Commit

Permalink
#310 [fix] HousCheckBox - isChecked, onCheckedChanged defaultValue 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Sep 5, 2023
1 parent 445f4e0 commit b0b3014
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ import hous.release.designsystem.theme.HousWhite
@Composable
fun HousCheckBox(
modifier: Modifier = CheckBoxModifier,
isChecked: Boolean,
onCheckedChange: () -> Unit,
shape: Shape = CircleShape,
backgroundColor: Color = HousBlue,
borderColor: Color = HousBlueL1,
enabled: Boolean = true,
isChecked: Boolean = false,
onCheckedChange: () -> Unit = {},
interactionSource: MutableInteractionSource = remember { MutableInteractionSource() },
indicator: Indication = rememberRipple(),
content: (@Composable () -> Unit)? = null
Expand Down

0 comments on commit b0b3014

Please sign in to comment.