Skip to content

Commit

Permalink
[Bug/#1] Fix : Updated drawable asset names to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Dec 28, 2024
1 parent e2fd973 commit 800c8bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions calendar/src/main/java/com/dongchyeon/calendar/ui/Calendar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ fun MonthSelector(
) {
Icon(
painter = painterResource(
id = R.drawable.ic_arrow_left
id = R.drawable.lib_ic_arrow_left
),
tint = Color.Unspecified,
contentDescription = null
Expand All @@ -159,7 +159,7 @@ fun MonthSelector(
) {
Icon(
painter = painterResource(
id = R.drawable.ic_arrow_right
id = R.drawable.lib_ic_arrow_right
),
tint = Color.Unspecified,
contentDescription = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private fun HorizontalCalendarHeader(
verticalAlignment = Alignment.CenterVertically
) {
Icon(
painter = painterResource(id = R.drawable.ic_arrow_left),
painter = painterResource(id = R.drawable.lib_ic_arrow_left),
contentDescription = null,
tint = config.textColor,
modifier = Modifier
Expand All @@ -174,7 +174,7 @@ private fun HorizontalCalendarHeader(
)

Icon(
painter = painterResource(id = R.drawable.ic_arrow_right),
painter = painterResource(id = R.drawable.lib_ic_arrow_right),
contentDescription = null,
tint = config.textColor,
modifier = Modifier
Expand Down

0 comments on commit 800c8bc

Please sign in to comment.