Skip to content

Commit f81b3e4

Browse files
committed
[UI/#190] ic_check 에셋 교체
1 parent 51deb32 commit f81b3e4

File tree

5 files changed

+12
-22
lines changed

5 files changed

+12
-22
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2-
android:width="14dp"
3-
android:height="10dp"
4-
android:viewportWidth="14"
5-
android:viewportHeight="10">
2+
android:width="21dp"
3+
android:height="20dp"
4+
android:viewportWidth="21"
5+
android:viewportHeight="20">
66
<path
7-
android:pathData="M13.145,0.244C13.47,0.57 13.47,1.097 13.145,1.423L5.506,9.061C5.35,9.218 5.138,9.306 4.917,9.306C4.696,9.306 4.484,9.218 4.328,9.061L0.855,5.589C0.53,5.264 0.53,4.736 0.855,4.411C1.181,4.085 1.708,4.085 2.034,4.411L4.917,7.294L11.967,0.244C12.292,-0.081 12.82,-0.081 13.145,0.244Z"
8-
android:fillColor="#17191F"/>
7+
android:pathData="M16.503,5.244C16.828,5.57 16.828,6.097 16.503,6.423L8.864,14.061C8.707,14.218 8.495,14.306 8.274,14.306C8.053,14.306 7.841,14.218 7.685,14.061L4.213,10.589C3.887,10.264 3.887,9.736 4.213,9.411C4.538,9.085 5.066,9.085 5.391,9.411L8.274,12.294L15.324,5.244C15.649,4.919 16.177,4.919 16.503,5.244Z"
8+
android:fillColor="#ffffff"/>
99
</vector>

core/designsystem/src/main/res/drawable/ic_check_border_lined.xml

-9
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2-
android:width="14dp"
3-
android:height="14dp"
4-
android:viewportWidth="14"
5-
android:viewportHeight="14">
2+
android:width="20dp"
3+
android:height="20dp"
4+
android:viewportWidth="20"
5+
android:viewportHeight="20">
66
<path
7-
android:pathData="M11.75,0.584C8.546,0.249 5.47,0.249 2.266,0.584C0.656,0.752 -0.455,2.432 0.363,3.956C1.355,5.803 2.759,7.531 4.714,8.86V12.12C4.714,13.232 5.854,13.98 6.874,13.537L8.373,12.886C8.937,12.641 9.303,12.085 9.303,11.469V8.86C11.257,7.531 12.661,5.803 13.653,3.956C14.062,3.193 13.95,2.374 13.564,1.748C13.184,1.131 12.518,0.664 11.75,0.584Z"
7+
android:pathData="M14.75,3.584C11.546,3.249 8.47,3.249 5.266,3.584C3.656,3.752 2.545,5.432 3.363,6.956C4.355,8.803 5.759,10.531 7.714,11.86V15.12C7.714,16.232 8.854,16.98 9.874,16.537L11.373,15.886C11.937,15.641 12.303,15.085 12.303,14.469V11.86C14.257,10.531 15.661,8.803 16.653,6.956C17.062,6.193 16.95,5.374 16.564,4.748C16.184,4.131 15.518,3.664 14.75,3.584Z"
88
android:fillColor="#ffffff"
99
android:fillType="evenOdd"/>
1010
</vector>

core/ui/src/main/java/com/yapp/ui/component/checkbox/OrbitCheckBox.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fun OrbitCheckBox(
4242
contentAlignment = Alignment.Center,
4343
) {
4444
Icon(
45-
painter = painterResource(core.designsystem.R.drawable.ic_check_border_lined),
45+
painter = painterResource(core.designsystem.R.drawable.ic_check),
4646
contentDescription = "IC_CHECK",
4747
tint = OrbitTheme.colors.gray_700,
4848
)

feature/home/src/main/java/com/yapp/alarm/component/AlarmCheckItem.kt

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ internal fun AlarmCheckItem(
3838
text = label,
3939
style = OrbitTheme.typography.label1Medium,
4040
color = if (isPressed) OrbitTheme.colors.main else OrbitTheme.colors.gray_400,
41-
modifier = Modifier.padding(start = 4.dp),
4241
textAlign = TextAlign.Center,
4342
)
4443
}

0 commit comments

Comments
 (0)