Skip to content

Commit

Permalink
feat: update all material icons and fix sizing
Browse files Browse the repository at this point in the history
There's been a bit of a redesign since the last time I obtained most of these icons + new tint.
  • Loading branch information
rushiiMachine committed Feb 10, 2025
1 parent 0b32488 commit 4aabe9f
Show file tree
Hide file tree
Showing 34 changed files with 101 additions and 60 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
package com.aliucord.manager.ui.components.dialogs

import androidx.compose.foundation.layout.size
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.aliucord.manager.R

@Composable
Expand Down Expand Up @@ -42,6 +45,12 @@ fun AlternativeDownloaderDialog(
textAlign = TextAlign.Center,
)
},
icon = { Icon(painterResource(R.drawable.ic_download), contentDescription = null) },
icon = {
Icon(
painter = painterResource(R.drawable.ic_download),
contentDescription = null,
modifier = Modifier.size(32.dp),
)
},
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ fun CustomComponentVersionPicker(
}
},
title = { Text("Custom Component") },
icon = { Icon(painterResource(R.drawable.ic_download), contentDescription = null) },
icon = {
Icon(
painter = painterResource(R.drawable.ic_download),
contentDescription = null,
modifier = Modifier.size(32.dp),
)
},
text = {
Column {
Text(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package com.aliucord.manager.ui.components.dialogs

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Warning
import androidx.compose.foundation.layout.size
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.aliucord.manager.R

@Composable
Expand Down Expand Up @@ -46,7 +48,11 @@ fun InstallerAbortDialog(
)
},
icon = {
Icon(Icons.Filled.Warning, contentDescription = null)
Icon(
painter = painterResource(R.drawable.ic_warning),
contentDescription = null,
modifier = Modifier.size(32.dp),
)
},
containerColor = MaterialTheme.colorScheme.errorContainer,
iconContentColor = MaterialTheme.colorScheme.onErrorContainer,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package com.aliucord.manager.ui.components.dialogs

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Warning
import androidx.compose.foundation.layout.size
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.DialogProperties
import com.aliucord.manager.R

Expand Down Expand Up @@ -47,7 +49,13 @@ fun NetworkWarningDialog(
textAlign = TextAlign.Center,
)
},
icon = { Icon(Icons.Filled.Warning, contentDescription = null) },
icon = {
Icon(
painter = painterResource(R.drawable.ic_warning),
contentDescription = null,
modifier = Modifier.size(32.dp),
)
},
containerColor = MaterialTheme.colorScheme.errorContainer,
iconContentColor = MaterialTheme.colorScheme.onErrorContainer,
titleContentColor = MaterialTheme.colorScheme.onErrorContainer,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.aliucord.manager.ui.screens.home.components

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Info
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.res.painterResource
Expand All @@ -21,7 +19,7 @@ fun HomeAppBar() {

IconButton(onClick = { navigator.push(AboutScreen()) }) {
Icon(
imageVector = Icons.Default.Info,
painter = painterResource(R.drawable.ic_info),
contentDescription = stringResource(R.string.navigation_about)
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.text.KeyboardActions
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.*
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -96,7 +94,7 @@ class PluginsScreen : Screen, Parcelable {
verticalArrangement = Arrangement.spacedBy(8.dp),
) {
Icon(
imageVector = Icons.Default.Warning,
painter = painterResource(R.drawable.ic_warning),
contentDescription = null,
tint = MaterialTheme.colorScheme.error,
)
Expand Down Expand Up @@ -161,13 +159,13 @@ private fun PluginSearch(
if (!isFilterBlank) {
IconButton(onClick = { onFilterChange("") }) {
Icon(
imageVector = Icons.Default.Close,
painter = painterResource(R.drawable.ic_close),
contentDescription = stringResource(R.string.action_clear)
)
}
} else {
Icon(
imageVector = Icons.Default.Search,
painter = painterResource(R.drawable.ic_search),
contentDescription = stringResource(R.string.plugins_search)
)
}
Expand All @@ -188,7 +186,7 @@ private fun UninstallPluginDialog(
onDismissRequest = onDismiss,
icon = {
Icon(
imageVector = Icons.Default.Delete,
painter = painterResource(R.drawable.ic_delete_forever),
contentDescription = stringResource(R.string.action_uninstall)
)
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ package com.aliucord.manager.ui.screens.plugins.components

import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Delete
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -147,7 +145,7 @@ fun PluginCard(
IconButton(modifier = Modifier.size(25.dp), onClick = onClickDelete) {
Icon(
modifier = Modifier.fillMaxSize(),
imageVector = Icons.Default.Delete,
painter = painterResource(R.drawable.ic_delete_forever),
contentDescription = stringResource(R.string.action_uninstall),
tint = MaterialTheme.colorScheme.error
)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_add.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="M440,520L240,520q-17,0 -28.5,-11.5T200,480q0,-17 11.5,-28.5T240,440h200v-200q0,-17 11.5,-28.5T480,200q17,0 28.5,11.5T520,240v200h200q17,0 28.5,11.5T760,480q0,17 -11.5,28.5T720,520L520,520v200q0,17 -11.5,28.5T480,760q-17,0 -28.5,-11.5T440,720v-200Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_app_shortcut.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M280,920q-33,0 -56.5,-23.5T200,840v-720q0,-33 23.5,-56.5T280,40h400q33,0 56.5,23.5T760,120v160h-80v-40L280,240v480h400v-40h80v160q0,33 -23.5,56.5T680,920L280,920ZM686,520L480,520v80q0,17 -11.5,28.5T440,640q-17,0 -28.5,-11.5T400,600v-80q0,-33 23.5,-56.5T480,440h206l-35,-36q-11,-11 -11,-27.5t12,-28.5q11,-11 28,-11t28,11l104,104q12,12 12,28t-12,28L708,612q-11,11 -27.5,11.5T652,612q-11,-11 -11.5,-27.5T651,556l35,-36Z" />
android:fillColor="#e8eaed"
android:pathData="M735.23,500L480,500q-10.77,0 -17.69,6.92 -6.93,6.93 -6.93,17.7v100q0,8.5 -5.75,14.25 -5.76,5.75 -14.27,5.75t-14.24,-5.75q-5.74,-5.75 -5.74,-14.25v-100q0,-26.66 18.99,-45.64Q453.35,460 480,460h255.23l-69.61,-69.85q-5.62,-5.61 -6,-13.65 -0.39,-8.04 6.39,-14.82 6.22,-6.22 13.99,-6.22 7.77,0 14.15,6.39l95.54,95.53q9.69,9.7 9.69,22.62 0,12.92 -9.69,22.62l-95.54,95.53q-5.61,5.62 -13.65,6.12t-14.82,-6.28q-6.22,-6.22 -6.33,-13.87 -0.12,-7.66 6.27,-14.27L735.23,500ZM304.62,880q-26.66,0 -45.64,-18.98T240,815.38v-670.76q0,-26.66 18.98,-45.64T304.62,80h350.76q26.66,0 45.64,18.98T720,144.62v112.3q0,8.5 -5.76,14.25t-14.27,5.75q-8.51,0 -14.24,-5.75T680,256.92L680,220L280,220v520h400v-36.92q0,-8.5 5.76,-14.25t14.27,-5.75q8.51,0 14.24,5.75t5.73,14.25v112.3q0,26.66 -18.98,45.64T655.38,880L304.62,880Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_arrow_down_small.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M480,604.5q-8.96,0 -17.15,-3.1 -8.2,-3.1 -14.91,-9.81L264.17,407.83Q251.5,395.15 251.5,376t12.67,-31.83Q276.85,331.5 296,331.5t31.83,12.67L480,496.35l152.17,-152.17Q644.85,331.5 664,331.5t31.83,12.67Q708.5,356.85 708.5,376t-12.67,31.83L512.07,591.59q-6.72,6.72 -14.91,9.81Q488.96,604.5 480,604.5Z" />
android:fillColor="#e8eaed"
android:pathData="M480,599q-8,0 -15,-2.5t-13,-8.5L268,404q-11,-11 -11,-28t11,-28q11,-11 28,-11t28,11l156,156 156,-156q11,-11 28,-11t28,11q11,11 11,28t-11,28L508,588q-6,6 -13,8.5t-15,2.5Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_arrow_up_small.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M480,439.65 L327.83,591.83Q315.15,604.5 296,604.5t-31.83,-12.67Q251.5,579.15 251.5,560t12.67,-31.83l183.76,-183.76q13.67,-13.67 32.06,-13.67t32.06,13.67l183.76,183.76Q708.5,540.85 708.5,560t-12.67,31.83Q683.15,604.5 664,604.5t-31.83,-12.67L480,439.65Z" />
android:fillColor="#e8eaed"
android:pathData="M480,432 L324,588q-11,11 -28,11t-28,-11q-11,-11 -11,-28t11,-28l184,-184q12,-12 28,-12t28,12l184,184q11,11 11,28t-11,28q-11,11 -28,11t-28,-11L480,432Z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_back.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="m313,520 l196,196q12,12 11.5,28T508,772q-12,11 -28,11.5T452,772L188,508q-6,-6 -8.5,-13t-2.5,-15q0,-8 2.5,-15t8.5,-13l264,-264q11,-11 27.5,-11t28.5,11q12,12 12,28.5T508,245L313,440h447q17,0 28.5,11.5T800,480q0,17 -11.5,28.5T760,520L313,520Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_brush.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M441,870q-30.94,0 -52.97,-22.03Q366,825.94 366,795v-162.5L245,632.5q-30.94,0 -52.97,-22.03Q170,588.44 170,557.5v-276q0,-63 44.94,-107.25T323,130h429.5q15.5,0 26.5,11t11,26.5v390q0,30.94 -22.03,52.97Q745.94,632.5 715,632.5L594,632.5L594,795q0,30.94 -22.03,52.97Q549.94,870 519,870h-78ZM245,403h470v-198h-40.5v119q0,15.5 -11,26.5t-26.5,11q-15.5,0 -26.5,-11t-11,-26.5v-119L557,205v41q0,15.5 -11,26.5t-26.5,11q-15.5,0 -26.5,-11T482,246v-41L323.24,205q-32.74,0 -55.49,22.25T245,281.5L245,403Z" />
android:fillColor="#e8eaed"
android:pathData="M440,880q-33,0 -56.5,-23.5T360,800v-160L240,640q-33,0 -56.5,-23.5T160,560v-280q0,-66 47,-113t113,-47h440q17,0 28.5,11.5T800,160v400q0,33 -23.5,56.5T720,640L600,640v160q0,33 -23.5,56.5T520,880h-80ZM240,400h480v-200h-40v120q0,17 -11.5,28.5T640,360q-17,0 -28.5,-11.5T600,320v-120h-40v40q0,17 -11.5,28.5T520,280q-17,0 -28.5,-11.5T480,240v-40L320,200q-33,0 -56.5,23.5T240,280v120Z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_bug.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="M480,840q-65,0 -120.5,-32T272,720h-72q-17,0 -28.5,-11.5T160,680q0,-17 11.5,-28.5T200,640h44q-3,-20 -3.5,-40t-0.5,-40h-40q-17,0 -28.5,-11.5T160,520q0,-17 11.5,-28.5T200,480h40q0,-20 0.5,-40t3.5,-40h-44q-17,0 -28.5,-11.5T160,360q0,-17 11.5,-28.5T200,320h72q14,-23 31.5,-43t40.5,-35l-37,-38q-11,-11 -11,-27.5t12,-28.5q11,-11 28,-11t28,11l58,58q28,-9 57,-9t57,9l60,-59q11,-11 27.5,-11t28.5,12q11,11 11,28t-11,28l-38,38q23,15 41.5,34.5T688,320h72q17,0 28.5,11.5T800,360q0,17 -11.5,28.5T760,400h-44q3,20 3.5,40t0.5,40h40q17,0 28.5,11.5T800,520q0,17 -11.5,28.5T760,560h-40q0,20 -0.5,40t-3.5,40h44q17,0 28.5,11.5T800,680q0,17 -11.5,28.5T760,720h-72q-32,56 -87.5,88T480,840ZM440,640h80q17,0 28.5,-11.5T560,600q0,-17 -11.5,-28.5T520,560h-80q-17,0 -28.5,11.5T400,600q0,17 11.5,28.5T440,640ZM440,480h80q17,0 28.5,-11.5T560,440q0,-17 -11.5,-28.5T520,400h-80q-17,0 -28.5,11.5T400,440q0,17 11.5,28.5T440,480Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_canceled.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="m336,666.15 l144,-144 144,144L666.15,624l-144,-144 144,-144L624,293.85l-144,144 -144,-144L293.85,336l144,144 -144,144L336,666.15ZM480.07,860q-78.84,0 -148.2,-29.92 -69.37,-29.92 -120.68,-81.21 -51.31,-51.29 -81.25,-120.63 -29.93,-69.34 -29.93,-148.17t29.92,-148.2q29.92,-69.37 81.21,-120.68 51.29,-51.31 120.63,-81.25 69.34,-29.93 148.17,-29.93t148.2,29.92q69.37,29.92 120.68,81.21 51.31,51.29 81.25,120.63 29.93,69.34 29.93,148.17t-29.92,148.2q-29.92,69.37 -81.21,120.68 -51.29,51.31 -120.63,81.25 -69.34,29.93 -148.17,29.93Z" />
android:fillColor="#e8eaed"
android:pathData="m480,536 l116,116q11,11 28,11t28,-11q11,-11 11,-28t-11,-28L536,480l116,-116q11,-11 11,-28t-11,-28q-11,-11 -28,-11t-28,11L480,424 364,308q-11,-11 -28,-11t-28,11q-11,11 -11,28t11,28l116,116 -116,116q-11,11 -11,28t11,28q11,11 28,11t28,-11l116,-116ZM480,880q-83,0 -156,-31.5T197,763q-54,-54 -85.5,-127T80,480q0,-83 31.5,-156T197,197q54,-54 127,-85.5T480,80q83,0 156,31.5T763,197q54,54 85.5,127T880,480q0,83 -31.5,156T763,763q-54,54 -127,85.5T480,880Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_check_circle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="m423.23,650.15 l268.92,-268.92L650,339.08 423.23,565.85l-114,-114L267.08,494l156.15,156.15ZM480.07,860q-78.84,0 -148.2,-29.92 -69.37,-29.92 -120.68,-81.21 -51.31,-51.29 -81.25,-120.63 -29.93,-69.34 -29.93,-148.17t29.92,-148.2q29.92,-69.37 81.21,-120.68 51.29,-51.31 120.63,-81.25 69.34,-29.93 148.17,-29.93t148.2,29.92q69.37,29.92 120.68,81.21 51.31,51.29 81.25,120.63 29.93,69.34 29.93,148.17t-29.92,148.2q-29.92,69.37 -81.21,120.68 -51.29,51.31 -120.63,81.25 -69.34,29.93 -148.17,29.93Z" />
android:fillColor="#e8eaed"
android:pathData="m424,552 l-86,-86q-11,-11 -28,-11t-28,11q-11,11 -11,28t11,28l114,114q12,12 28,12t28,-12l226,-226q11,-11 11,-28t-11,-28q-11,-11 -28,-11t-28,11L424,552ZM480,880q-83,0 -156,-31.5T197,763q-54,-54 -85.5,-127T80,480q0,-83 31.5,-156T197,197q54,-54 127,-85.5T480,80q83,0 156,31.5T763,197q54,54 85.5,127T880,480q0,83 -31.5,156T763,763q-54,54 -127,85.5T480,880Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_circle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M480.07,860q-78.84,0 -148.2,-29.92 -69.37,-29.92 -120.68,-81.21 -51.31,-51.29 -81.25,-120.63 -29.93,-69.34 -29.93,-148.17t29.92,-148.2q29.92,-69.37 81.21,-120.68 51.29,-51.31 120.63,-81.25 69.34,-29.93 148.17,-29.93t148.2,29.92q69.37,29.92 120.68,81.21 51.31,51.29 81.25,120.63 29.93,69.34 29.93,148.17t-29.92,148.2q-29.92,69.37 -81.21,120.68 -51.29,51.31 -120.63,81.25 -69.34,29.93 -148.17,29.93ZM480,800q134,0 227,-93t93,-227q0,-134 -93,-227t-227,-93q-134,0 -227,93t-93,227q0,134 93,227t227,93ZM480,480Z" />
android:fillColor="#e8eaed"
android:pathData="M480,880q-83,0 -156,-31.5T197,763q-54,-54 -85.5,-127T80,480q0,-83 31.5,-156T197,197q54,-54 127,-85.5T480,80q83,0 156,31.5T763,197q54,54 85.5,127T880,480q0,83 -31.5,156T763,763q-54,54 -127,85.5T480,880ZM480,800q134,0 227,-93t93,-227q0,-134 -93,-227t-227,-93q-134,0 -227,93t-93,227q0,134 93,227t227,93ZM480,480Z" />
</vector>
9 changes: 9 additions & 0 deletions app/src/main/res/drawable/ic_close.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#e8eaed"
android:pathData="M480,536 L284,732q-11,11 -28,11t-28,-11q-11,-11 -11,-28t11,-28l196,-196 -196,-196q-11,-11 -11,-28t11,-28q11,-11 28,-11t28,11l196,196 196,-196q11,-11 28,-11t28,11q11,11 11,28t-11,28L536,480l196,196q11,11 11,28t-11,28q-11,11 -28,11t-28,-11L480,536Z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_code.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="m193,481 l155,155q11,11 11,28t-11,28q-11,11 -28,11t-28,-11L108,508q-6,-6 -8.5,-13T97,480q0,-8 2.5,-15t8.5,-13l184,-184q12,-12 28.5,-12t28.5,12q12,12 12,28.5T349,325L193,481ZM767,479L612,324q-11,-11 -11,-28t11,-28q11,-11 28,-11t28,11l184,184q6,6 8.5,13t2.5,15q0,8 -2.5,15t-8.5,13L668,692q-12,12 -28,11.5T612,691q-12,-12 -12,-28.5t12,-28.5l155,-155Z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_delete_forever.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="M280,840q-33,0 -56.5,-23.5T200,760v-520q-17,0 -28.5,-11.5T160,200q0,-17 11.5,-28.5T200,160h160q0,-17 11.5,-28.5T400,120h160q17,0 28.5,11.5T600,160h160q17,0 28.5,11.5T800,200q0,17 -11.5,28.5T760,240v520q0,33 -23.5,56.5T680,840L280,840ZM480,556 L556,632q11,11 28,11t28,-11q11,-11 11,-28t-11,-28l-76,-76 76,-76q11,-11 11,-28t-11,-28q-11,-11 -28,-11t-28,11l-76,76 -76,-76q-11,-11 -28,-11t-28,11q-11,11 -11,28t11,28l76,76 -76,76q-11,11 -11,28t11,28q11,11 28,11t28,-11l76,-76Z" />
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_download.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M480,623q-8,0 -15,-2.5t-13,-8.5L308,468q-12,-12 -11.5,-28t11.5,-28q12,-12 28.5,-12.5T365,411l75,75v-286q0,-17 11.5,-28.5T480,160q17,0 28.5,11.5T520,200v286l75,-75q12,-12 28.5,-11.5T652,412q11,12 11.5,28T652,468L508,612q-6,6 -13,8.5t-15,2.5ZM240,800q-33,0 -56.5,-23.5T160,720v-80q0,-17 11.5,-28.5T200,600q17,0 28.5,11.5T240,640v80h480v-80q0,-17 11.5,-28.5T760,600q17,0 28.5,11.5T800,640v80q0,33 -23.5,56.5T720,800L240,800Z" />
android:fillColor="#e8eaed"
android:pathData="M200,800h560q17,0 28.5,11.5T800,840q0,17 -11.5,28.5T760,880L200,880q-17,0 -28.5,-11.5T160,840q0,-17 11.5,-28.5T200,800ZM480,695q-9,0 -17.5,-4T448,679L250,425q-15,-20 -4,-42.5t36,-22.5h78v-240q0,-17 11.5,-28.5T400,80h160q17,0 28.5,11.5T600,120v240h78q25,0 36,22.5t-4,42.5L512,679q-6,8 -14.5,12t-17.5,4Z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_extension.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="#FFFFFFFF"
android:fillColor="#e8eaed"
android:pathData="M352,840L200,840q-33,0 -56.5,-23.5T120,760v-152q48,0 84,-30.5t36,-77.5q0,-47 -36,-77.5T120,392v-152q0,-33 23.5,-56.5T200,160h160q0,-42 29,-71t71,-29q42,0 71,29t29,71h160q33,0 56.5,23.5T800,240v160q42,0 71,29t29,71q0,42 -29,71t-71,29v160q0,33 -23.5,56.5T720,840L568,840q0,-50 -31.5,-85T460,720q-45,0 -76.5,35T352,840Z" />
</vector>
Loading

0 comments on commit 4aabe9f

Please sign in to comment.