Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class BottomNavigationMenuViewModel @Inject constructor(
return BottomNavMenuItem(
id = R.id.xoSwapFragment,
titleResId = R.string.fund,
iconResId = R.drawable.ic_import,
iconResId = R.drawable.ic_fund,
enabled = true
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private fun QuickActionButton(
if (showIndicator) {
Box(
modifier = Modifier
.padding(top = 16.dp, end = 12.dp)
.padding(top = 18.dp, end = 18.dp)
.size(4.dp)
.background(color = PeraTheme.colors.helper.negative, shape = CircleShape)
.align(Alignment.TopEnd)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ fun ReceiveQuickActionButton(onClick: () -> Unit) {
@Composable
fun FundQuickActionButton(onClick: () -> Unit) {
SecondaryQuickActionButton(
iconResId = R.drawable.ic_import,
iconResId = R.drawable.ic_fund,
text = stringResource(R.string.fund),
onClick = onClick,
showIndicator = true
Expand Down
39 changes: 39 additions & 0 deletions app/src/main/res/drawable/ic_fund.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!--
~ Copyright 2022-2025 Pera Wallet, LDA
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#00000000"
android:pathData="M2,5V18C2,19.657 3.343,21 5,21H19C20.657,21 22,19.657 22,18V9.478C22,7.987 20.791,6.778 19.3,6.778"
android:strokeWidth="2"
android:strokeColor="@color/text_main"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M6.444,3H4C2.895,3 2,3.895 2,5C2,6.105 2.895,7 4,7H10"
android:strokeWidth="2"
android:strokeColor="@color/text_main"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
<path
android:fillColor="#00000000"
android:pathData="M11,3L13,3C14.105,3 15,3.895 15,5L15,13M18,11L15,14L12,11"
android:strokeWidth="2"
android:strokeColor="@color/text_main"
android:strokeLineCap="round"
android:strokeLineJoin="round" />
</vector>