Skip to content

Commit

Permalink
[MP-5156] checkcircle deprecated component 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon-deali committed Oct 23, 2024
1 parent af67e3e commit cb1d1d9
Showing 1 changed file with 0 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,37 +78,6 @@ fun Checkcircle(
}
}

@Deprecated(
"CheckcircleIcon을 이용해주세요.",
ReplaceWith(
"CheckcircleIcon(\n" +
"modifier = modifier," +
"checked = checked," +
"enabled = enabled," +
"onCheck = onCheck," +
"noRipple = noRipple," +
")",
"net.deali.designsystem.component.Checkcircle"
)
)
@Composable
fun Checkcircle(
checked: Boolean,
modifier: Modifier = Modifier,
enabled: Boolean = true,
onCheck: () -> Unit = {},
noRipple: Boolean = false,
) {
CheckcircleIcon(
modifier = modifier,
checked = checked,
enabled = enabled,
isAd = false,
onCheck = onCheck,
noRipple = noRipple,
)
}

@Composable
fun CheckcircleIcon(
checked: Boolean,
Expand Down

0 comments on commit cb1d1d9

Please sign in to comment.