Skip to content

Commit

Permalink
feat: apply chip button custom clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
lsakee committed Jul 10, 2024
1 parent a06978f commit 0136b6b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import com.record.designsystem.theme.Gray09
import com.record.designsystem.theme.Main
import com.record.designsystem.theme.RecordyTheme
import com.record.designsystem.theme.Sub01
import com.record.ui.extension.customClickable
import timber.log.Timber

/**
Expand Down Expand Up @@ -62,7 +63,8 @@ fun RecordyChipButton(
.background(color = backGroundColor)
.border(width = 1.dp, color = borderLineColor, shape = shape)
.padding(vertical = 8.dp)
.padding(start = 10.dp, end = if (isActive && isCheckSmall) 6.dp else 10.dp),
.padding(start = 10.dp, end = if (isActive && isCheckSmall) 6.dp else 10.dp)
.customClickable(onClick = onClick),
) {
Row(
verticalAlignment = Alignment.CenterVertically,
Expand Down

0 comments on commit 0136b6b

Please sign in to comment.