PM-13635, PM-13636, PM-13637: Update icons (#4087)

This commit is contained in:
David Perez 2024-10-14 13:23:03 -05:00 committed by GitHub
parent b465cc5078
commit 8eab74d458
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
58 changed files with 265 additions and 275 deletions

View file

@ -8,6 +8,7 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.ExperimentalMaterial3Api
@ -85,7 +86,8 @@ private fun SetupCompleteContent(
contentDescription = null,
modifier = Modifier
.align(CenterHorizontally)
.standardHorizontalMargin(),
.standardHorizontalMargin()
.size(size = 100.dp),
)
Spacer(Modifier.height(24.dp))
Text(

View file

@ -158,7 +158,7 @@ private fun MasterPasswordGeneratorContent(
BitwardenFilledButtonWithIcon(
label = stringResource(R.string.generate_button_label),
onClick = onGenerateNewPassword,
icon = rememberVectorPainter(id = R.drawable.ic_generator),
icon = rememberVectorPainter(id = R.drawable.ic_generate),
modifier = Modifier.fillMaxWidth(),
)
Spacer(modifier = Modifier.height(12.dp))

View file

@ -158,7 +158,7 @@ private fun TryGeneratorCard(
modifier: Modifier = Modifier,
) {
BitwardenActionCardSmall(
actionIcon = rememberVectorPainter(id = R.drawable.ic_generator),
actionIcon = rememberVectorPainter(id = R.drawable.ic_generate),
actionText = stringResource(
R.string.use_the_generator_to_create_a_strong_unique_password,
),

View file

@ -409,7 +409,7 @@ private fun AddAccountItem(
.then(modifier),
) {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_small),
contentDescription = null,
tint = BitwardenTheme.colorScheme.icon.secondary,
modifier = Modifier

View file

@ -77,7 +77,7 @@ fun BitwardenSearchTopAppBar(
onValueChange = onSearchTermChange,
trailingIcon = {
BitwardenStandardIconButton(
vectorIconRes = R.drawable.ic_close,
vectorIconRes = R.drawable.ic_clear,
contentDescription = stringResource(id = R.string.clear),
onClick = { onSearchTermChange("") },
)

View file

@ -62,7 +62,6 @@ fun BitwardenActionCard(
) {
Row(
modifier = Modifier.fillMaxWidth(),
verticalAlignment = Alignment.CenterVertically,
) {
leadingContent?.let {
it()
@ -77,7 +76,7 @@ fun BitwardenActionCard(
painter = rememberVectorPainter(id = R.drawable.ic_close),
contentDescription = stringResource(id = R.string.close),
onClick = onDismissClick,
modifier = Modifier.offset(x = 8.dp),
modifier = Modifier.offset(x = 10.dp, y = (-10).dp),
)
}
cardSubtitle?.let {
@ -99,7 +98,7 @@ fun BitwardenActionCard(
/**
* A default exit animation for [BitwardenActionCard] when using an animation wrapper like
* [AnimatedVisibility].
* [androidx.compose.animation.AnimatedVisibility].
*/
fun actionCardExitAnimation() = fadeOut() + shrinkVertically(shrinkTowards = Alignment.Top)

View file

@ -89,7 +89,7 @@ fun BitwardenActionCardSmall(
private fun ActionCardSmall_preview() {
BitwardenTheme {
BitwardenActionCardSmall(
actionIcon = rememberVectorPainter(id = R.drawable.ic_generator),
actionIcon = rememberVectorPainter(id = R.drawable.ic_generate),
actionText = "This is an action.",
callToActionText = "Take action",
onCardClicked = { },
@ -102,7 +102,7 @@ private fun ActionCardSmall_preview() {
private fun ActionCardSmallWithTrailingIcon_preview() {
BitwardenTheme {
BitwardenActionCardSmall(
actionIcon = rememberVectorPainter(id = R.drawable.ic_generator),
actionIcon = rememberVectorPainter(id = R.drawable.ic_generate),
actionText = "An action with trailing content",
callToActionText = "Take action",
onCardClicked = {},

View file

@ -92,7 +92,7 @@ fun BitwardenDateSelectButton(
enabled = shouldShowDialog,
trailingIcon = {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
painter = rememberVectorPainter(id = R.drawable.ic_chevron_down),
contentDescription = null,
)
},

View file

@ -77,7 +77,7 @@ fun BitwardenTimeSelectButton(
enabled = shouldShowDialog,
trailingIcon = {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
painter = rememberVectorPainter(id = R.drawable.ic_chevron_down),
contentDescription = null,
)
},

View file

@ -126,7 +126,7 @@ fun BitwardenMultiSelectButton(
enabled = shouldShowDialog,
trailingIcon = {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
painter = rememberVectorPainter(id = R.drawable.ic_chevron_down),
contentDescription = null,
)
},

View file

@ -83,7 +83,7 @@ fun EnvironmentSelector(
modifier = Modifier.padding(end = 8.dp),
)
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_down_triangle),
painter = rememberVectorPainter(id = R.drawable.ic_chevron_down_small),
contentDescription = stringResource(id = R.string.region),
tint = BitwardenTheme.colorScheme.icon.secondary,
)

View file

@ -102,7 +102,7 @@ private fun BitwardenTextFieldWithActions_preview() {
contentDescription = "Action 1",
)
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_generator),
painter = rememberVectorPainter(id = R.drawable.ic_generate),
contentDescription = "Action 2",
)
},

View file

@ -4,11 +4,8 @@ import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
@ -16,8 +13,6 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.x8bit.bitwarden.R
import com.x8bit.bitwarden.ui.platform.components.util.rememberVectorPainter
import com.x8bit.bitwarden.ui.platform.theme.BitwardenTheme
/**
@ -33,17 +28,6 @@ fun SearchEmptyContent(
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally,
) {
Icon(
painter = rememberVectorPainter(id = R.drawable.ic_search),
contentDescription = null,
tint = BitwardenTheme.colorScheme.icon.primary,
modifier = Modifier
.padding(horizontal = 16.dp)
.size(74.dp),
)
Spacer(modifier = Modifier.height(24.dp))
viewState.message?.let {
Text(
textAlign = TextAlign.Center,

View file

@ -135,7 +135,7 @@ fun BlockAutoFillScreen(
onClick = remember(viewModel) {
{ viewModel.trySendAction(BlockAutoFillAction.AddUriClick) }
},
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_large),
contentDescription = stringResource(id = R.string.add_item),
modifier = Modifier.testTag(tag = "AddItemButton"),
)

View file

@ -91,7 +91,7 @@ fun FoldersScreen(
onClick = remember(viewModel) {
{ viewModel.trySendAction(FoldersAction.AddFolderButtonClick) }
},
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_large),
contentDescription = stringResource(id = R.string.add_item),
modifier = Modifier
.testTag(tag = "AddItemButton")

View file

@ -389,7 +389,7 @@ private fun GeneratedStringItem(
modifier = Modifier.testTag("CopyValueButton"),
)
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_generator,
vectorIconRes = R.drawable.ic_generate,
contentDescription = stringResource(id = R.string.generate_password),
onClick = onRegenerateClick,
modifier = Modifier.testTag("RegenerateValueButton"),

View file

@ -85,7 +85,7 @@ fun SendEmpty(
onClick = onAddItemClick,
label = stringResource(id = R.string.add_a_send),
modifier = Modifier.standardHorizontalMargin(),
icon = rememberVectorPainter(R.drawable.ic_plus),
icon = rememberVectorPainter(R.drawable.ic_plus_small),
)
Spacer(modifier = Modifier.weight(1F))
Spacer(modifier = Modifier.navigationBarsPadding())

View file

@ -154,7 +154,7 @@ fun SendScreen(
onClick = remember(viewModel) {
{ viewModel.trySendAction(SendAction.AddSendClick) }
},
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_large),
contentDescription = stringResource(id = R.string.add_item),
modifier = Modifier.testTag(tag = "AddItemButton"),
)

View file

@ -304,9 +304,9 @@ private fun AddSendOptions(
Icon(
painter = rememberVectorPainter(
if (isExpanded) {
R.drawable.ic_chevron_up
R.drawable.ic_chevron_up_small
} else {
R.drawable.ic_chevron_down
R.drawable.ic_chevron_down_small
},
),
contentDescription = null,

View file

@ -156,7 +156,7 @@ private fun CustomFieldBoolean(
BitwardenRowOfActions(
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_settings,
vectorIconRes = R.drawable.ic_cog,
contentDescription = stringResource(id = R.string.edit),
onClick = onEditValue,
)
@ -191,7 +191,7 @@ private fun CustomFieldHiddenField(
modifier = modifier,
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_settings,
vectorIconRes = R.drawable.ic_cog,
contentDescription = stringResource(id = R.string.edit),
onClick = onEditValue,
)
@ -218,7 +218,7 @@ private fun CustomFieldTextField(
modifier = modifier,
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_settings,
vectorIconRes = R.drawable.ic_cog,
contentDescription = stringResource(id = R.string.edit),
onClick = onEditValue,
)
@ -263,7 +263,7 @@ private fun CustomFieldLinkedField(
BitwardenRowOfActions(
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_settings,
vectorIconRes = R.drawable.ic_cog,
contentDescription = stringResource(id = R.string.edit),
onClick = onEditValue,
)

View file

@ -116,7 +116,7 @@ fun LazyListScope.vaultAddEditLoginItems(
value = loginState.totp,
trailingIconContent = {
BitwardenStandardIconButton(
vectorIconRes = R.drawable.ic_close,
vectorIconRes = R.drawable.ic_clear,
contentDescription = stringResource(id = R.string.delete),
onClick = loginItemTypeHandlers.onClearTotpKeyClick,
)
@ -246,7 +246,7 @@ fun LazyListScope.vaultAddEditLoginItems(
.padding(horizontal = 16.dp),
actions = {
BitwardenStandardIconButton(
vectorIconRes = R.drawable.ic_question_circle,
vectorIconRes = R.drawable.ic_question_circle_small,
contentDescription = stringResource(
id = R.string.master_password_re_prompt_help,
),
@ -379,7 +379,7 @@ private fun UsernameRow(
onValueChange = loginItemTypeHandlers.onUsernameTextChange,
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_generator,
vectorIconRes = R.drawable.ic_generate,
contentDescription = stringResource(id = R.string.generate_username),
onClick = {
if (username.isEmpty()) {
@ -452,7 +452,7 @@ private fun PasswordRow(
modifier = Modifier.testTag(tag = "CheckPasswordButton"),
)
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_generator,
vectorIconRes = R.drawable.ic_generate,
contentDescription = stringResource(id = R.string.generate_password),
onClick = {
if (password.isEmpty()) {

View file

@ -40,7 +40,7 @@ fun VaultAddEditUriItem(
onValueChange = { onUriValueChange(uriItem.copy(uri = it)) },
actions = {
BitwardenFilledIconButton(
vectorIconRes = R.drawable.ic_settings,
vectorIconRes = R.drawable.ic_cog,
contentDescription = stringResource(id = R.string.options),
onClick = { shouldShowOptionsDialog = true },
modifier = Modifier.testTag(tag = "LoginUriOptionsButton"),

View file

@ -444,7 +444,7 @@ private fun VaultItemListingScaffold(
if (state.itemListingType.hasFab) {
BitwardenFloatingActionButton(
onClick = vaultItemListingHandlers.addVaultItemClick,
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_large),
contentDescription = stringResource(id = R.string.add_item),
modifier = Modifier.testTag(tag = "AddItemButton"),
)

View file

@ -87,7 +87,7 @@ fun VaultNoItems(
Spacer(modifier = Modifier.height(24.dp))
BitwardenFilledButtonWithIcon(
icon = rememberVectorPainter(R.drawable.ic_plus),
icon = rememberVectorPainter(R.drawable.ic_plus_small),
modifier = Modifier.standardHorizontalMargin(),
onClick = addItemClickAction,
label = buttonText,

View file

@ -269,7 +269,7 @@ private fun VaultScreenScaffold(
) {
BitwardenFloatingActionButton(
onClick = vaultHandlers.addItemClickAction,
painter = rememberVectorPainter(id = R.drawable.ic_plus),
painter = rememberVectorPainter(id = R.drawable.ic_plus_large),
contentDescription = stringResource(id = R.string.add_item),
modifier = Modifier.testTag(tag = "AddItemButton"),
)

View file

@ -0,0 +1,14 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M16.255,5.125C16.255,6.675 15.409,8.025 14.157,8.73C14.292,8.762 14.427,8.797 14.561,8.836C14.719,8.882 14.875,8.932 15.03,8.987C15.94,9.309 16.773,9.783 17.48,10.387C18.076,10.897 18.574,11.492 18.949,12.149C19.155,12.509 19.03,12.967 18.67,13.173C18.31,13.378 17.852,13.253 17.647,12.893C17.361,12.393 16.977,11.931 16.505,11.528C15.945,11.049 15.275,10.665 14.53,10.401C14.403,10.356 14.274,10.315 14.144,10.277C13.511,10.094 12.844,10 12.17,10C11.496,10 10.83,10.094 10.196,10.277C10.066,10.315 9.938,10.356 9.811,10.401C9.066,10.665 8.395,11.049 7.836,11.528C7.364,11.931 6.979,12.393 6.694,12.893C6.488,13.253 6.03,13.378 5.671,13.173C5.311,12.967 5.186,12.509 5.391,12.149C5.767,11.492 6.264,10.897 6.861,10.387C7.568,9.783 8.401,9.309 9.31,8.987C9.481,8.926 9.653,8.872 9.828,8.822C9.946,8.789 10.064,8.758 10.184,8.73C8.932,8.025 8.085,6.675 8.085,5.125C8.085,2.847 9.914,1 12.17,1C14.426,1 16.255,2.847 16.255,5.125ZM12.17,7.75C13.584,7.75 14.755,6.589 14.755,5.125C14.755,3.661 13.584,2.5 12.17,2.5C10.756,2.5 9.585,3.661 9.585,5.125C9.585,6.589 10.756,7.75 12.17,7.75Z"
android:fillColor="#96A3BB"
android:fillType="evenOdd"/>
<path
android:pathData="M11.938,20.25C11.377,21.852 9.864,23 8.085,23C5.829,23 4,21.153 4,18.875C4,16.597 5.829,14.75 8.085,14.75C9.864,14.75 11.377,15.898 11.938,17.5H18.209C18.267,17.5 18.322,17.52 18.367,17.556L19.713,18.643C19.894,18.79 20,19.011 20,19.244C20,19.448 19.92,19.644 19.776,19.788L18.175,21.406C18.036,21.546 17.846,21.625 17.649,21.625C17.415,21.625 17.194,21.514 17.055,21.326L16.255,20.25H15.915L15.097,21.352C14.969,21.524 14.767,21.625 14.553,21.625C14.339,21.625 14.137,21.524 14.01,21.352L13.191,20.25H11.938ZM7.404,20.25C8.156,20.25 8.766,19.634 8.766,18.875C8.766,18.116 8.156,17.5 7.404,17.5C6.652,17.5 6.043,18.116 6.043,18.875C6.043,19.634 6.652,20.25 7.404,20.25Z"
android:fillColor="#96A3BB"
android:fillType="evenOdd"/>
</vector>

View file

@ -7,10 +7,10 @@
<clip-path
android:pathData="M0,0.667h24v24h-24z"/>
<path
android:pathData="M2,12.667C2,7.144 6.477,2.667 12,2.667C15.7,2.667 18.932,4.676 20.662,7.667H18C17.448,7.667 17,8.114 17,8.667C17,9.219 17.448,9.667 18,9.667H23C23.552,9.667 24,9.219 24,8.667V3.667C24,3.114 23.552,2.667 23,2.667C22.448,2.667 22,3.114 22,3.667V6.031C19.851,2.799 16.175,0.667 12,0.667C5.373,0.667 0,6.039 0,12.667C0,13.219 0.448,13.667 1,13.667C1.552,13.667 2,13.219 2,12.667Z"
android:pathData="M2,12.667C2,7.144 6.477,2.667 12,2.667C15.271,2.667 18.176,4.236 20.001,6.667H16C15.448,6.667 15,7.114 15,7.667C15,8.219 15.448,8.667 16,8.667H21.781C21.795,8.667 21.808,8.667 21.822,8.667H22C22.552,8.667 23,8.219 23,7.667V1.666C23,1.114 22.552,0.667 22,0.667C21.448,0.667 21,1.114 21,1.666V4.729C18.802,2.239 15.585,0.667 12,0.667C5.373,0.667 0,6.039 0,12.667C0,13.219 0.448,13.667 1,13.667C1.552,13.667 2,13.219 2,12.667Z"
android:fillColor="#96A3BB"/>
<path
android:pathData="M7,16.667C7,16.114 6.552,15.667 6,15.667H1C0.448,15.667 0,16.114 0,16.667V21.667C0,22.219 0.448,22.667 1,22.667C1.552,22.667 2,22.219 2,21.667V19.302C4.149,22.534 7.825,24.667 12,24.667C18.627,24.667 24,19.294 24,12.667C24,12.114 23.552,11.667 23,11.667C22.448,11.667 22,12.114 22,12.667C22,18.189 17.523,22.667 12,22.667C8.3,22.667 5.068,20.657 3.338,17.667H6C6.552,17.667 7,17.219 7,16.667Z"
android:pathData="M22,12.667C22,18.189 17.523,22.667 12,22.667C8.729,22.667 5.824,21.097 3.999,18.667H8C8.552,18.667 9,18.219 9,17.667C9,17.114 8.552,16.667 8,16.667H2.219C2.205,16.666 2.192,16.666 2.178,16.667H2C1.448,16.667 1,17.114 1,17.667V23.667C1,24.219 1.448,24.667 2,24.667C2.552,24.667 3,24.219 3,23.667V20.604C5.198,23.094 8.415,24.667 12,24.667C18.627,24.667 24,19.294 24,12.667C24,12.114 23.552,11.667 23,11.667C22.448,11.667 22,12.114 22,12.667Z"
android:fillColor="#96A3BB"/>
<path
android:pathData="M13,9.627C13,9.074 12.552,8.627 12,8.627C11.448,8.627 11,9.074 11,9.627V11.426L9.311,10.872C8.786,10.7 8.222,10.987 8.05,11.512C7.878,12.036 8.164,12.601 8.689,12.773L10.395,13.332L9.329,14.825C9.008,15.274 9.113,15.899 9.562,16.22C10.012,16.541 10.636,16.437 10.957,15.987L12,14.526L13.043,15.987C13.364,16.437 13.989,16.541 14.438,16.22C14.888,15.899 14.992,15.274 14.671,14.825L13.605,13.332L15.311,12.773C15.836,12.601 16.122,12.036 15.95,11.511C15.778,10.987 15.214,10.7 14.689,10.872L13,11.425V9.627Z"

View file

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M22,12C22,6.477 17.523,2 12,2C6.477,2 2,6.477 2,12C2,17.523 6.477,22 12,22C17.523,22 22,17.523 22,12ZM14.194,18.4C13.369,20.05 12.507,20.5 12,20.5C11.493,20.5 10.631,20.05 9.806,18.4C9.102,16.993 8.606,15.016 8.515,12.75H15.485C15.394,15.016 14.898,16.993 14.194,18.4ZM15.485,11.25H8.515C8.606,8.984 9.102,7.007 9.806,5.6C10.631,3.95 11.493,3.5 12,3.5C12.507,3.5 13.369,3.95 14.194,5.6C14.898,7.007 15.394,8.984 15.485,11.25ZM16.986,12.75C16.878,15.678 16.139,18.255 15.04,19.94C18.01,18.802 20.179,16.046 20.467,12.75H16.986ZM20.467,11.25H16.986C16.878,8.322 16.139,5.745 15.04,4.06C18.01,5.198 20.179,7.954 20.467,11.25ZM7.014,11.25C7.122,8.322 7.861,5.745 8.96,4.06C5.99,5.198 3.821,7.954 3.533,11.25H7.014ZM3.533,12.75C3.821,16.046 5.99,18.802 8.96,19.94C7.861,18.255 7.122,15.678 7.014,12.75H3.533Z"
android:fillColor="#96A3BB"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,26 +3,12 @@
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<group>
<clip-path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667ZM3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:fillType="evenOdd"/>
<path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#96A3BB"
android:fillType="evenOdd"
android:strokeColor="#96A3BB"/>
</group>
<group>
<clip-path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667ZM3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:fillType="evenOdd"/>
android:pathData="M9,7C9.552,7 10,7.448 10,8V9.126C10.715,9.31 11.352,9.687 11.854,10.198L12.83,9.634C13.308,9.358 13.92,9.522 14.196,10C14.472,10.478 14.308,11.09 13.83,11.366L12.855,11.929C12.95,12.27 13,12.629 13,13C13,13.371 12.95,13.73 12.855,14.071L13.83,14.634C14.308,14.91 14.472,15.522 14.196,16C13.92,16.478 13.308,16.642 12.83,16.366L11.854,15.802C11.352,16.313 10.715,16.69 10,16.874V18C10,18.552 9.552,19 9,19C8.448,19 8,18.552 8,18V16.874C7.285,16.69 6.647,16.313 6.146,15.802L5.17,16.366C4.692,16.642 4.08,16.478 3.804,16C3.528,15.522 3.692,14.91 4.17,14.634L5.145,14.071C5.05,13.73 5,13.371 5,13C5,12.629 5.05,12.27 5.145,11.929L4.17,11.366C3.692,11.09 3.528,10.478 3.804,10C4.08,9.522 4.692,9.358 5.17,9.634L6.146,10.198C6.647,9.687 7.285,9.31 8,9.126V8C8,7.448 8.448,7 9,7ZM11,13C11,13.357 10.907,13.692 10.743,13.982L10.732,14L10.722,14.017C10.374,14.606 9.733,15 9,15C8.267,15 7.627,14.606 7.278,14.018L7.268,14L7.257,13.981C7.093,13.691 7,13.356 7,13C7,12.644 7.093,12.309 7.257,12.019L7.268,12L7.278,11.982C7.627,11.394 8.267,11 9,11C9.733,11 10.374,11.394 10.722,11.982L10.732,12L10.743,12.019C10.907,12.309 11,12.643 11,13Z" />
<path
android:pathData="M3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#96A3BB"
android:fillType="evenOdd"
android:strokeColor="#96A3BB"/>
</group>
android:pathData="M3,23V22C1.343,22 0,20.657 0,19V7C0,5.343 1.343,4 3,4H21C22.657,4 24,5.343 24,7V19C24,20.657 22.657,22 21,22V23C21,23.552 20.552,24 20,24C19.448,24 19,23.552 19,23V22H5V23C5,23.552 4.552,24 4,24C3.448,24 3,23.552 3,23ZM21,6H3C2.448,6 2,6.448 2,7V19C2,19.552 2.448,20 3,20H21C21.552,20 22,19.552 22,19V17H20C19.448,17 19,16.552 19,16C19,15.448 19.448,15 20,15H22V11H20C19.448,11 19,10.552 19,10C19,9.448 19.448,9 20,9H22V7C22,6.448 21.552,6 21,6Z" />
</vector>

View file

@ -3,29 +3,15 @@
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M2,19.667H22V5.667L10.823,13.491C10.529,14.141 9.897,14.605 9.151,14.661L2,19.667Z"
android:fillColor="#175DDC"/>
<group>
<clip-path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667ZM3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:fillType="evenOdd"/>
<path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillType="evenOdd"
android:strokeColor="#65ABFF"/>
</group>
<group>
<clip-path
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667ZM3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:fillType="evenOdd"/>
android:fillColor="#175DDC"
android:pathData="M2,19.667H22V5.667L10.823,13.491C10.529,14.141 9.897,14.605 9.151,14.661L2,19.667Z" />
<path
android:pathData="M3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#65ABFF"
android:fillType="evenOdd"
android:strokeColor="#65ABFF"/>
</group>
android:pathData="M9,6.667C9.552,6.667 10,7.114 10,7.667V8.793C10.715,8.977 11.352,9.353 11.854,9.864L12.83,9.3C13.308,9.024 13.92,9.188 14.196,9.667C14.472,10.145 14.308,10.756 13.83,11.033L12.855,11.595C12.95,11.936 13,12.295 13,12.667C13,13.038 12.95,13.397 12.855,13.738L13.83,14.3C14.308,14.577 14.472,15.188 14.196,15.667C13.92,16.145 13.308,16.309 12.83,16.032L11.854,15.469C11.352,15.98 10.715,16.357 10,16.541V17.667C10,18.219 9.552,18.667 9,18.667C8.448,18.667 8,18.219 8,17.667V16.541C7.285,16.357 6.647,15.98 6.146,15.469L5.17,16.032C4.692,16.309 4.08,16.145 3.804,15.667C3.528,15.188 3.692,14.577 4.17,14.3L5.145,13.738C5.05,13.397 5,13.038 5,12.667C5,12.295 5.05,11.936 5.145,11.595L4.17,11.033C3.692,10.756 3.528,10.145 3.804,9.667C4.08,9.188 4.692,9.024 5.17,9.3L6.146,9.864C6.647,9.353 7.285,8.977 8,8.793V7.667C8,7.114 8.448,6.667 9,6.667ZM11,12.667C11,13.023 10.907,13.358 10.743,13.648L10.732,13.667L10.722,13.684C10.374,14.272 9.733,14.667 9,14.667C8.267,14.667 7.627,14.273 7.278,13.685L7.268,13.667L7.257,13.647C7.093,13.358 7,13.023 7,12.667C7,12.31 7.093,11.976 7.257,11.686L7.268,11.667L7.278,11.648C7.627,11.061 8.267,10.667 9,10.667C9.733,10.667 10.374,11.061 10.722,11.649L10.732,11.667L10.743,11.685C10.907,11.975 11,12.31 11,12.667Z" />
<path
android:fillColor="#65ABFF"
android:fillType="evenOdd"
android:pathData="M3,22.667V21.667C1.343,21.667 0,20.323 0,18.667V6.667C0,5.01 1.343,3.667 3,3.667H21C22.657,3.667 24,5.01 24,6.667V18.667C24,20.323 22.657,21.667 21,21.667V22.667C21,23.219 20.552,23.667 20,23.667C19.448,23.667 19,23.219 19,22.667V21.667H5V22.667C5,23.219 4.552,23.667 4,23.667C3.448,23.667 3,23.219 3,22.667ZM21,5.667H3C2.448,5.667 2,6.114 2,6.667V18.667C2,19.219 2.448,19.667 3,19.667H21C21.552,19.667 22,19.219 22,18.667V16.667H20C19.448,16.667 19,16.219 19,15.667C19,15.114 19.448,14.667 20,14.667H22V10.667H20C19.448,10.667 19,10.219 19,9.667C19,9.114 19.448,8.667 20,8.667H22V6.667C22,6.114 21.552,5.667 21,5.667Z" />
</vector>

View file

@ -1,9 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
<path
android:pathData="M20,11.103H7.83L13.42,5.513L12,4.103L4,12.103L12,20.103L13.41,18.693L7.83,13.103H20V11.103Z"
android:fillColor="#ffffff"/>
android:pathData="M10.32,16.251C10.655,16.586 10.655,17.129 10.32,17.463C9.986,17.798 9.443,17.798 9.108,17.463L2.251,10.606C1.916,10.271 1.916,9.729 2.251,9.394L9.108,2.537C9.443,2.202 9.986,2.202 10.32,2.537C10.655,2.872 10.655,3.414 10.32,3.749L4.927,9.143H17.144C17.617,9.143 18.001,9.526 18.001,10C18.001,10.473 17.617,10.857 17.144,10.857H4.926L10.32,16.251Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -5,10 +5,10 @@
android:viewportHeight="24">
<path
android:pathData="M16.255,5.125C16.255,6.675 15.409,8.025 14.157,8.73C14.292,8.762 14.427,8.797 14.561,8.836C14.719,8.882 14.875,8.932 15.03,8.987C15.94,9.309 16.773,9.783 17.48,10.387C18.076,10.897 18.574,11.492 18.949,12.149C19.155,12.509 19.03,12.967 18.67,13.173C18.31,13.378 17.852,13.253 17.647,12.893C17.361,12.393 16.977,11.931 16.505,11.528C15.945,11.049 15.275,10.665 14.53,10.401C14.403,10.356 14.274,10.315 14.144,10.277C13.511,10.094 12.844,10 12.17,10C11.496,10 10.83,10.094 10.196,10.277C10.066,10.315 9.938,10.356 9.811,10.401C9.066,10.665 8.395,11.049 7.836,11.528C7.364,11.931 6.979,12.393 6.694,12.893C6.488,13.253 6.03,13.378 5.671,13.173C5.311,12.967 5.186,12.509 5.391,12.149C5.767,11.492 6.264,10.897 6.861,10.387C7.568,9.783 8.401,9.309 9.31,8.987C9.481,8.926 9.653,8.872 9.828,8.822C9.946,8.789 10.064,8.758 10.184,8.73C8.932,8.025 8.085,6.675 8.085,5.125C8.085,2.847 9.914,1 12.17,1C14.426,1 16.255,2.847 16.255,5.125ZM12.17,7.75C13.584,7.75 14.755,6.589 14.755,5.125C14.755,3.661 13.584,2.5 12.17,2.5C10.756,2.5 9.585,3.661 9.585,5.125C9.585,6.589 10.756,7.75 12.17,7.75Z"
android:fillColor="#175DDC"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
<path
android:pathData="M11.938,20.25C11.377,21.852 9.864,23 8.085,23C5.829,23 4,21.153 4,18.875C4,16.597 5.829,14.75 8.085,14.75C9.864,14.75 11.377,15.898 11.938,17.5H18.209C18.267,17.5 18.322,17.52 18.367,17.556L19.713,18.643C19.894,18.79 20,19.011 20,19.244C20,19.448 19.92,19.644 19.776,19.788L18.175,21.406C18.036,21.546 17.846,21.625 17.649,21.625C17.415,21.625 17.194,21.514 17.055,21.326L16.255,20.25H15.915L15.097,21.352C14.969,21.524 14.767,21.625 14.553,21.625C14.339,21.625 14.137,21.524 14.01,21.352L13.191,20.25H11.938ZM7.404,20.25C8.156,20.25 8.766,19.634 8.766,18.875C8.766,18.116 8.156,17.5 7.404,17.5C6.652,17.5 6.043,18.116 6.043,18.875C6.043,19.634 6.652,20.25 7.404,20.25Z"
android:fillColor="#175DDC"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,17 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M2,2h20v20h-20z"/>
<path
android:pathData="M11.871,22C9.918,22 8.01,21.414 6.387,20.315C4.764,19.216 3.498,17.654 2.751,15.827C2.004,13.999 1.809,11.989 2.19,10.049C2.571,8.11 3.511,6.327 4.891,4.929C6.272,3.53 8.031,2.579 9.945,2.192C11.859,1.806 14.104,2.005 15.907,2.761C17.711,3.518 19.252,4.8 20.337,6.444C21.422,8.089 22,10.022 22,12C21.997,14.651 20.956,17.193 19.105,19.067C17.255,20.942 14.488,21.997 11.871,22ZM11.871,3.25C10.162,3.25 8.492,3.763 7.072,4.724C5.652,5.685 4.545,7.052 3.891,8.651C3.237,10.25 3.067,12.009 3.4,13.707C3.733,15.404 4.556,16.963 5.763,18.187C6.971,19.411 8.51,20.244 10.185,20.581C11.861,20.919 13.856,20.746 15.434,20.083C17.012,19.421 18.361,18.299 19.31,16.861C20.259,15.422 20.766,13.73 20.766,11.999C20.763,9.679 19.852,7.455 18.233,5.815C16.614,4.174 14.16,3.252 11.871,3.25Z"
android:fillColor="#151B2C"/>
<path
android:pathData="M16.757,7.604C17.03,7.815 17.081,8.208 16.87,8.481L11.283,15.725C10.825,16.318 9.952,16.378 9.417,15.853L7.187,13.663C6.941,13.421 6.937,13.025 7.179,12.779C7.421,12.533 7.817,12.529 8.063,12.771L10.293,14.961L15.88,7.718C16.091,7.444 16.483,7.394 16.757,7.604Z"
android:fillColor="#151B2C"
android:fillType="evenOdd"/>
</group>
android:viewportHeight="25">
<path
android:pathData="M16.905,10.051C17.198,9.758 17.198,9.283 16.905,8.99C16.612,8.697 16.138,8.697 15.845,8.99L10.438,14.397L8.155,12.115C7.862,11.822 7.388,11.822 7.095,12.115C6.802,12.408 6.802,12.883 7.095,13.176L9.907,15.988C10.2,16.281 10.675,16.281 10.968,15.988L16.905,10.051Z"
android:fillColor="#000000"/>
<path
android:pathData="M22,12.333C22,17.856 17.523,22.333 12,22.333C6.477,22.333 2,17.856 2,12.333C2,6.81 6.477,2.333 12,2.333C17.523,2.333 22,6.81 22,12.333ZM20.5,12.333C20.5,17.027 16.694,20.833 12,20.833C7.306,20.833 3.5,17.027 3.5,12.333C3.5,7.639 7.306,3.833 12,3.833C16.694,3.833 20.5,7.639 20.5,12.333Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,13 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="16dp"
android:viewportWidth="16"
android:viewportHeight="16">
<group>
<clip-path
android:pathData="M0.5,0.5h15v15h-15z"/>
<path
android:pathData="M7.677,10.585C7.961,10.874 8.084,10.823 8.361,10.538C8.361,10.538 14.286,4.843 14.704,4.456C15.122,4.068 15.892,4.635 15.262,5.215C14.632,5.794 8.835,11.382 8.835,11.382C8.335,11.788 7.655,11.788 7.155,11.382L0.808,5.295C0.105,4.656 0.74,3.945 1.356,4.533C3.725,6.798 7.677,10.585 7.677,10.585Z"
android:fillColor="#175DDC"/>
</group>
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M17.783,9.22C17.49,8.927 17.015,8.927 16.722,9.22L12.001,13.941L7.28,9.22C6.987,8.927 6.513,8.927 6.22,9.22C5.927,9.513 5.927,9.987 6.22,10.28L11.471,15.532C11.764,15.825 12.239,15.825 12.532,15.532L17.783,10.28C18.076,9.987 18.076,9.513 17.783,9.22Z"
android:fillColor="#5A6D91"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="17dp"
android:viewportWidth="16"
android:viewportHeight="17">
<path
android:pathData="M13.783,5.553C13.49,5.26 13.015,5.26 12.722,5.553L8.001,10.274L3.28,5.553C2.987,5.26 2.513,5.26 2.22,5.553C1.927,5.846 1.927,6.32 2.22,6.613L7.471,11.865C7.764,12.158 8.239,12.158 8.532,11.865L13.783,6.613C14.076,6.32 14.076,5.846 13.783,5.553Z"
android:fillColor="#000000"/>
</vector>

View file

@ -1,9 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportHeight="20"
android:viewportWidth="20">
<path
android:fillColor="#1B1B1F"
android:pathData="M14.697,10.431C15.082,10.052 15.014,9.888 14.634,9.519C14.634,9.519 7.04,1.619 6.524,1.062C6.008,0.504 6.764,-0.522 7.536,0.317C8.309,1.157 15.759,8.887 15.759,8.887C16.301,9.553 16.301,10.461 15.759,11.126L7.644,19.589C6.792,20.527 5.843,19.68 6.628,18.859C9.647,15.7 14.697,10.431 14.697,10.431Z" />
android:width="16dp"
android:height="17dp"
android:viewportWidth="16"
android:viewportHeight="17">
<path
android:pathData="M5.22,2.553C4.927,2.846 4.927,3.32 5.22,3.613L9.941,8.334L5.22,13.055C4.927,13.348 4.927,13.823 5.22,14.116C5.513,14.409 5.987,14.409 6.28,14.116L11.532,8.865C11.825,8.572 11.825,8.097 11.532,7.804L6.28,2.553C5.987,2.26 5.513,2.26 5.22,2.553Z"
android:fillColor="#000000"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="16dp"
android:viewportWidth="16"
android:viewportHeight="16">
<group>
<clip-path
android:pathData="M0.5,0.5h15v15h-15z"/>
<path
android:pathData="M8.323,5.415C8.039,5.126 7.916,5.177 7.639,5.462C7.639,5.462 1.714,11.157 1.296,11.545C0.878,11.932 0.108,11.365 0.738,10.785C1.367,10.206 7.165,4.618 7.165,4.618C7.665,4.212 8.345,4.212 8.845,4.618L15.192,10.705C15.895,11.344 15.26,12.055 14.644,11.467C12.274,9.202 8.323,5.415 8.323,5.415Z"
android:fillColor="#175DDC"/>
</group>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="17dp"
android:viewportWidth="16"
android:viewportHeight="17">
<path
android:pathData="M2.22,11.365C2.513,11.658 2.987,11.658 3.28,11.365L8.001,6.644L12.722,11.365C13.015,11.658 13.49,11.658 13.783,11.365C14.076,11.072 14.076,10.597 13.783,10.304L8.532,5.053C8.239,4.76 7.764,4.76 7.471,5.053L2.22,10.304C1.927,10.597 1.927,11.072 2.22,11.365Z"
android:fillColor="#000000"/>
</vector>

View file

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M8.468,7.74C8.175,7.447 7.7,7.447 7.407,7.74C7.114,8.033 7.114,8.508 7.407,8.801L10.939,12.333L7.407,15.865C7.114,16.158 7.114,16.633 7.407,16.926C7.7,17.219 8.175,17.219 8.468,16.926L12,13.394L15.532,16.926C15.825,17.219 16.3,17.219 16.593,16.926C16.886,16.633 16.886,16.158 16.593,15.865L13.061,12.333L16.593,8.801C16.886,8.508 16.886,8.033 16.593,7.74C16.3,7.447 15.825,7.447 15.532,7.74L12,11.272L8.468,7.74Z"
android:fillColor="#000000"/>
<path
android:pathData="M22,12.333C22,17.856 17.523,22.333 12,22.333C6.477,22.333 2,17.856 2,12.333C2,6.81 6.477,2.333 12,2.333C17.523,2.333 22,6.81 22,12.333ZM20.5,12.333C20.5,17.027 16.694,20.833 12,20.833C7.306,20.833 3.5,17.027 3.5,12.333C3.5,7.639 7.306,3.833 12,3.833C16.694,3.833 20.5,7.639 20.5,12.333Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,7 +3,7 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M6.192,5.308C5.948,5.064 5.552,5.064 5.308,5.308C5.064,5.552 5.064,5.948 5.308,6.192L11.116,12L5.308,17.808C5.064,18.052 5.064,18.448 5.308,18.692C5.552,18.936 5.948,18.936 6.192,18.692L12,12.884L17.808,18.692C18.052,18.936 18.448,18.936 18.692,18.692C18.936,18.448 18.936,18.052 18.692,17.808L12.884,12L18.692,6.192C18.936,5.948 18.936,5.552 18.692,5.308C18.448,5.064 18.052,5.064 17.808,5.308L12,11.116L6.192,5.308Z"
android:fillColor="#000000"/>
<path
android:pathData="M5.22,5.219C5.513,4.927 5.987,4.927 6.28,5.219L12.006,10.945L17.732,5.219C18.025,4.927 18.5,4.927 18.792,5.219C19.085,5.512 19.085,5.987 18.792,6.28L13.067,12.006L18.792,17.732C19.085,18.024 19.085,18.499 18.792,18.792C18.5,19.085 18.025,19.085 17.732,18.792L12.006,13.066L6.28,18.792C5.987,19.085 5.513,19.085 5.22,18.792C4.927,18.499 4.927,18.024 5.22,17.732L10.945,12.006L5.22,6.28C4.927,5.987 4.927,5.512 5.22,5.219Z"
android:fillColor="#000000"/>
</vector>

View file

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M12,15.333C13.657,15.333 15,13.99 15,12.333C15,10.676 13.657,9.333 12,9.333C10.344,9.333 9,10.676 9,12.333C9,13.99 10.344,15.333 12,15.333Z"
android:fillColor="#000000"/>
<path
android:pathData="M19.715,5.443L21.941,9.223C22.183,9.635 22.098,10.155 21.738,10.466L20.259,11.74C20.273,11.936 20.281,12.134 20.281,12.333C20.281,12.534 20.273,12.733 20.259,12.931L21.732,14.2C22.093,14.511 22.178,15.031 21.936,15.443L19.71,19.223C19.468,19.635 18.965,19.823 18.511,19.672L16.651,19.055C16.319,19.277 15.969,19.475 15.605,19.648L15.22,21.533C15.125,21.999 14.716,22.333 14.24,22.333H9.754C9.279,22.333 8.87,21.999 8.775,21.533L8.391,19.652C8.024,19.478 7.672,19.278 7.337,19.054L5.475,19.672C5.021,19.823 4.519,19.635 4.277,19.223L2.051,15.443C1.808,15.031 1.894,14.511 2.254,14.2L3.73,12.929C3.715,12.732 3.708,12.533 3.708,12.333C3.708,12.134 3.715,11.937 3.73,11.742L2.249,10.466C1.888,10.155 1.803,9.635 2.045,9.223L4.271,5.443C4.514,5.031 5.016,4.844 5.47,4.994L7.335,5.613C7.67,5.389 8.023,5.189 8.391,5.014L8.775,3.133C8.87,2.667 9.279,2.333 9.754,2.333H14.24C14.716,2.333 15.125,2.667 15.22,3.133L15.605,5.018C15.97,5.191 16.32,5.39 16.653,5.613L18.516,4.994C18.971,4.844 19.473,5.031 19.715,5.443ZM9.034,6.37L9.711,6.049L10.163,3.833H13.832L14.284,6.051L14.961,6.372C15.26,6.515 15.547,6.678 15.82,6.86L16.429,7.267L18.62,6.54L20.43,9.613L18.708,11.097L18.763,11.85C18.775,12.009 18.781,12.17 18.781,12.333C18.781,12.497 18.775,12.659 18.763,12.82L18.707,13.573L20.424,15.054L18.615,18.126L16.428,17.4L15.818,17.807C15.546,17.989 15.259,18.152 14.961,18.294L14.284,18.615L13.832,20.833H10.163L9.711,18.618L9.034,18.296C8.733,18.153 8.444,17.99 8.17,17.807L7.56,17.4L5.371,18.126L3.562,15.054L5.282,13.572L5.226,12.818C5.214,12.658 5.208,12.496 5.208,12.333C5.208,12.171 5.214,12.01 5.226,11.851L5.281,11.098L3.557,9.613L5.366,6.54L7.559,7.268L8.168,6.86C8.443,6.677 8.732,6.513 9.034,6.37Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="16dp"
android:viewportWidth="16"
android:viewportHeight="16">
<group>
<clip-path
android:pathData="M0.5,0.5h15v15h-15z"/>
<path
android:pathData="M7.995,12.65C7.552,12.649 7.123,12.467 6.789,12.138L0.866,6.361C0.701,6.2 0.585,5.986 0.532,5.747C0.479,5.509 0.492,5.258 0.571,5.029C0.639,4.811 0.764,4.622 0.931,4.487C1.098,4.352 1.297,4.279 1.502,4.277L14.489,4.213C14.694,4.213 14.895,4.284 15.063,4.418C15.23,4.551 15.357,4.739 15.427,4.956C15.506,5.185 15.522,5.436 15.47,5.675C15.418,5.914 15.302,6.129 15.138,6.292L9.208,12.13C8.874,12.464 8.442,12.649 7.995,12.65Z"
android:fillColor="#175DDC"/>
</group>
</vector>

View file

@ -1,12 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24"
android:viewportWidth="24">
<path
android:fillColor="#1B1B1F"
android:pathData="M17.366,2.08L20.811,2.206L20.812,2.206C21.106,2.218 21.384,2.346 21.586,2.562C21.788,2.777 21.897,3.063 21.889,3.357L21.798,6.76C21.784,6.924 21.708,7.078 21.585,7.187C21.461,7.296 21.3,7.354 21.134,7.347C20.968,7.341 20.811,7.271 20.694,7.152C20.577,7.034 20.51,6.875 20.507,6.71L20.563,4.589C20.559,4.57 20.55,4.552 20.537,4.537C20.524,4.523 20.508,4.511 20.49,4.504C20.471,4.497 20.452,4.495 20.433,4.497C20.413,4.5 20.395,4.507 20.379,4.518L13.545,11.325C13.422,11.437 13.261,11.497 13.094,11.493C12.927,11.489 12.768,11.42 12.649,11.302C12.531,11.184 12.462,11.025 12.457,10.857C12.452,10.69 12.512,10.529 12.624,10.406L19.411,3.653C19.511,3.454 19.257,3.44 19.257,3.44L17.329,3.37C17.164,3.355 17.01,3.277 16.899,3.153C16.789,3.028 16.73,2.867 16.734,2.701C16.739,2.535 16.808,2.378 16.925,2.263C17.042,2.147 17.201,2.082 17.366,2.08Z" />
<path
android:fillColor="#1B1B1F"
android:pathData="M12,3.25H5.125C4.089,3.25 3.25,4.089 3.25,5.125V18.875C3.25,19.91 4.089,20.75 5.125,20.75H18.875C19.91,20.75 20.75,19.91 20.75,18.875V12C20.75,11.655 20.47,11.375 20.125,11.375C19.78,11.375 19.5,11.655 19.5,12V18.875C19.5,19.22 19.22,19.5 18.875,19.5H5.125C4.78,19.5 4.5,19.22 4.5,18.875V5.125C4.5,4.78 4.78,4.5 5.125,4.5H12C12.345,4.5 12.625,4.22 12.625,3.875C12.625,3.53 12.345,3.25 12,3.25Z" />
android:width="18dp"
android:height="18dp"
android:viewportWidth="18"
android:viewportHeight="18">
<path
android:pathData="M1.538,3.435C1.538,2.387 2.388,1.538 3.435,1.538H8.012C8.437,1.538 8.781,1.194 8.781,0.769C8.781,0.344 8.437,-0 8.012,-0H3.435C1.538,-0 0,1.538 0,3.435V14.564C0,16.462 1.538,18 3.435,18H14.564C16.461,18 17.999,16.462 17.999,14.564V9.988C17.999,9.563 17.655,9.218 17.23,9.218C16.805,9.218 16.461,9.563 16.461,9.988V14.564C16.461,15.612 15.611,16.462 14.564,16.462H3.435C2.388,16.462 1.538,15.612 1.538,14.564V3.435Z"
android:fillColor="#5A6D91"/>
<path
android:pathData="M11.853,0.769C11.853,1.194 12.197,1.538 12.622,1.538H15.374L9.444,7.468C9.144,7.769 9.144,8.256 9.444,8.556C9.745,8.856 10.232,8.856 10.532,8.556L16.462,2.626V5.378C16.462,5.803 16.806,6.147 17.231,6.147C17.656,6.147 18,5.803 18,5.378V0.769C18,0.344 17.656,-0 17.231,-0H12.622C12.197,-0 11.853,0.344 11.853,0.769Z"
android:fillColor="#5A6D91"/>
</vector>

View file

@ -0,0 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M3.051,11.11C3.006,11.521 3.304,11.892 3.715,11.936C4.127,11.981 4.497,11.683 4.542,11.272C4.934,7.662 8.055,4.829 11.87,4.829C14.607,4.829 16.99,6.289 18.261,8.449H16.267C15.852,8.449 15.517,8.785 15.517,9.199C15.517,9.613 15.852,9.949 16.267,9.949H20.248C20.663,9.949 20.998,9.613 20.998,9.199V5.216C20.998,4.802 20.663,4.466 20.248,4.466C19.834,4.466 19.498,4.802 19.498,5.216V7.595C17.95,5.038 15.11,3.329 11.87,3.329C7.304,3.329 3.527,6.724 3.051,11.11ZM20.942,13.549C20.986,13.138 20.689,12.767 20.277,12.723C19.865,12.678 19.495,12.976 19.45,13.387C19.058,16.997 15.937,19.83 12.123,19.83C9.386,19.83 7.003,18.371 5.732,16.211H7.728C8.142,16.211 8.478,15.875 8.478,15.461C8.478,15.046 8.142,14.711 7.728,14.711H3.746C3.332,14.711 2.996,15.046 2.996,15.461V19.443C2.996,19.857 3.332,20.193 3.746,20.193C4.16,20.193 4.496,19.857 4.496,19.443V17.067C6.045,19.623 8.883,21.33 12.123,21.33C16.688,21.33 20.465,17.935 20.942,13.549ZM12.751,9.77C12.751,9.356 12.415,9.02 12.001,9.02C11.586,9.02 11.251,9.356 11.251,9.77V11.363L9.754,10.873C9.361,10.744 8.937,10.959 8.808,11.352C8.679,11.746 8.894,12.17 9.287,12.299L10.797,12.793L9.855,14.113C9.615,14.45 9.693,14.918 10.03,15.159C10.367,15.4 10.835,15.321 11.076,14.984L12.001,13.689L12.925,14.984C13.166,15.321 13.634,15.4 13.971,15.159C14.309,14.918 14.387,14.45 14.146,14.113L13.204,12.793L14.714,12.299C15.107,12.17 15.322,11.746 15.193,11.352C15.064,10.959 14.64,10.744 14.247,10.873L12.751,11.363V9.77Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,19 +1,19 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
android:pathData="M0,0h24v24h-24z"/>
<path
android:pathData="M2,12.75C2,7.227 6.477,2.75 12,2.75C15.7,2.75 18.932,4.759 20.662,7.75H18C17.448,7.75 17,8.198 17,8.75C17,9.302 17.448,9.75 18,9.75H23C23.552,9.75 24,9.302 24,8.75V3.75C24,3.198 23.552,2.75 23,2.75C22.448,2.75 22,3.198 22,3.75V6.115C19.851,2.883 16.175,0.75 12,0.75C5.373,0.75 0,6.123 0,12.75C0,13.302 0.448,13.75 1,13.75C1.552,13.75 2,13.302 2,12.75Z"
android:pathData="M2,12C2,6.477 6.477,2 12,2C15.271,2 18.176,3.57 20.001,6H16C15.448,6 15,6.448 15,7C15,7.552 15.448,8 16,8H21.781C21.795,8 21.808,8 21.822,8H22C22.552,8 23,7.552 23,7V1C23,0.448 22.552,0 22,0C21.448,0 21,0.448 21,1V4.063C18.802,1.572 15.585,0 12,0C5.373,0 0,5.373 0,12C0,12.552 0.448,13 1,13C1.552,13 2,12.552 2,12Z"
android:fillColor="#5A6D91"/>
<path
android:pathData="M7,16.75C7,16.198 6.552,15.75 6,15.75H1C0.448,15.75 0,16.198 0,16.75V21.75C0,22.302 0.448,22.75 1,22.75C1.552,22.75 2,22.302 2,21.75V19.385C4.149,22.617 7.825,24.75 12,24.75C18.627,24.75 24,19.377 24,12.75C24,12.198 23.552,11.75 23,11.75C22.448,11.75 22,12.198 22,12.75C22,18.273 17.523,22.75 12,22.75C8.3,22.75 5.068,20.741 3.338,17.75H6C6.552,17.75 7,17.302 7,16.75Z"
android:pathData="M22,12C22,17.523 17.523,22 12,22C8.729,22 5.824,20.43 3.999,18H8C8.552,18 9,17.552 9,17C9,16.448 8.552,16 8,16H2.219C2.205,16 2.192,16 2.178,16H2C1.448,16 1,16.448 1,17V23C1,23.552 1.448,24 2,24C2.552,24 3,23.552 3,23V19.937C5.198,22.428 8.415,24 12,24C18.627,24 24,18.627 24,12C24,11.448 23.552,11 23,11C22.448,11 22,11.448 22,12Z"
android:fillColor="#5A6D91"/>
<path
android:pathData="M13,9.71C13,9.158 12.552,8.71 12,8.71C11.448,8.71 11,9.158 11,9.71V11.509L9.311,10.956C8.786,10.784 8.222,11.07 8.05,11.595C7.878,12.12 8.164,12.685 8.689,12.856L10.395,13.415L9.329,14.908C9.008,15.358 9.113,15.983 9.562,16.303C10.012,16.624 10.636,16.52 10.957,16.071L12,14.61L13.043,16.071C13.364,16.52 13.989,16.624 14.438,16.303C14.888,15.982 14.992,15.358 14.671,14.908L13.605,13.415L15.311,12.856C15.836,12.685 16.122,12.12 15.95,11.595C15.778,11.07 15.214,10.784 14.689,10.956L13,11.509V9.71Z"
android:pathData="M13,8.96C13,8.408 12.552,7.96 12,7.96C11.448,7.96 11,8.408 11,8.96V10.759L9.311,10.206C8.786,10.034 8.222,10.32 8.05,10.845C7.878,11.37 8.164,11.935 8.689,12.106L10.395,12.665L9.329,14.158C9.008,14.608 9.113,15.233 9.562,15.553C10.012,15.874 10.636,15.77 10.957,15.321L12,13.86L13.043,15.321C13.364,15.77 13.989,15.874 14.438,15.553C14.888,15.232 14.992,14.608 14.671,14.158L13.605,12.665L15.311,12.106C15.836,11.935 16.122,11.37 15.95,10.845C15.778,10.32 15.214,10.034 14.689,10.206L13,10.759V8.96Z"
android:fillColor="#5A6D91"/>
</group>
</vector>

View file

@ -1,22 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
android:pathData="M0,0h24v24h-24z"/>
<path
android:pathData="M19,12.75C19,16.616 15.866,19.75 12,19.75C8.134,19.75 5,16.616 5,12.75C5,8.884 8.134,5.75 12,5.75C15.866,5.75 19,8.884 19,12.75Z"
android:pathData="M19,12C19,15.866 15.866,19 12,19C8.134,19 5,15.866 5,12C5,8.134 8.134,5 12,5C15.866,5 19,8.134 19,12Z"
android:fillColor="#DBE5F6"/>
<path
android:pathData="M2,12.75C2,7.227 6.477,2.75 12,2.75C15.271,2.75 18.176,4.32 20.001,6.75H16C15.448,6.75 15,7.198 15,7.75C15,8.302 15.448,8.75 16,8.75H21.781C21.795,8.75 21.808,8.75 21.822,8.75H22C22.552,8.75 23,8.302 23,7.75V1.75C23,1.198 22.552,0.75 22,0.75C21.448,0.75 21,1.198 21,1.75V4.813C18.802,2.322 15.585,0.75 12,0.75C5.373,0.75 0,6.123 0,12.75C0,13.302 0.448,13.75 1,13.75C1.552,13.75 2,13.302 2,12.75Z"
android:pathData="M2,12C2,6.477 6.477,2 12,2C15.271,2 18.176,3.57 20.001,6H16C15.448,6 15,6.448 15,7C15,7.552 15.448,8 16,8H21.781C21.795,8 21.808,8 21.822,8H22C22.552,8 23,7.552 23,7V1C23,0.448 22.552,0 22,0C21.448,0 21,0.448 21,1V4.063C18.802,1.572 15.585,0 12,0C5.373,0 0,5.373 0,12C0,12.552 0.448,13 1,13C1.552,13 2,12.552 2,12Z"
android:fillColor="#175DDC"/>
<path
android:pathData="M22,12.75C22,18.273 17.523,22.75 12,22.75C8.729,22.75 5.824,21.18 3.999,18.75H8C8.552,18.75 9,18.302 9,17.75C9,17.198 8.552,16.75 8,16.75H2.219C2.205,16.75 2.192,16.75 2.178,16.75H2C1.448,16.75 1,17.198 1,17.75V23.75C1,24.302 1.448,24.75 2,24.75C2.552,24.75 3,24.302 3,23.75V20.687C5.198,23.178 8.415,24.75 12,24.75C18.627,24.75 24,19.377 24,12.75C24,12.198 23.552,11.75 23,11.75C22.448,11.75 22,12.198 22,12.75Z"
android:pathData="M22,12C22,17.523 17.523,22 12,22C8.729,22 5.824,20.43 3.999,18H8C8.552,18 9,17.552 9,17C9,16.448 8.552,16 8,16H2.219C2.205,16 2.192,16 2.178,16H2C1.448,16 1,16.448 1,17V23C1,23.552 1.448,24 2,24C2.552,24 3,23.552 3,23V19.937C5.198,22.428 8.415,24 12,24C18.627,24 24,18.627 24,12C24,11.448 23.552,11 23,11C22.448,11 22,11.448 22,12Z"
android:fillColor="#175DDC"/>
<path
android:pathData="M13,9.71C13,9.158 12.552,8.71 12,8.71C11.448,8.71 11,9.158 11,9.71V11.509L9.311,10.956C8.786,10.784 8.222,11.07 8.05,11.595C7.878,12.12 8.164,12.685 8.689,12.856L10.395,13.415L9.329,14.908C9.008,15.358 9.113,15.983 9.562,16.303C10.012,16.624 10.636,16.52 10.957,16.071L12,14.61L13.043,16.071C13.364,16.52 13.989,16.624 14.438,16.303C14.888,15.982 14.992,15.358 14.671,14.908L13.605,13.415L15.311,12.856C15.836,12.685 16.122,12.12 15.95,11.595C15.778,11.07 15.214,10.784 14.689,10.956L13,11.509V9.71Z"
android:pathData="M13,8.96C13,8.408 12.552,7.96 12,7.96C11.448,7.96 11,8.408 11,8.96V10.759L9.311,10.206C8.786,10.034 8.222,10.32 8.05,10.845C7.878,11.37 8.164,11.935 8.689,12.106L10.395,12.665L9.329,14.158C9.008,14.608 9.113,15.233 9.562,15.553C10.012,15.874 10.636,15.77 10.957,15.321L12,13.86L13.043,15.321C13.364,15.77 13.989,15.874 14.438,15.553C14.888,15.232 14.992,14.608 14.671,14.158L13.605,12.665L15.311,12.106C15.836,11.935 16.122,11.37 15.95,10.845C15.778,10.32 15.214,10.034 14.689,10.206L13,10.759V8.96Z"
android:fillColor="#175DDC"/>
</group>
</vector>

View file

@ -5,6 +5,6 @@
android:viewportHeight="24">
<path
android:pathData="M22,12C22,6.477 17.523,2 12,2C6.477,2 2,6.477 2,12C2,17.523 6.477,22 12,22C17.523,22 22,17.523 22,12ZM14.194,18.4C13.369,20.05 12.507,20.5 12,20.5C11.493,20.5 10.631,20.05 9.806,18.4C9.102,16.993 8.606,15.016 8.515,12.75H15.485C15.394,15.016 14.898,16.993 14.194,18.4ZM15.485,11.25H8.515C8.606,8.984 9.102,7.007 9.806,5.6C10.631,3.95 11.493,3.5 12,3.5C12.507,3.5 13.369,3.95 14.194,5.6C14.898,7.007 15.394,8.984 15.485,11.25ZM16.986,12.75C16.878,15.678 16.139,18.255 15.04,19.94C18.01,18.802 20.179,16.046 20.467,12.75H16.986ZM20.467,11.25H16.986C16.878,8.322 16.139,5.745 15.04,4.06C18.01,5.198 20.179,7.954 20.467,11.25ZM7.014,11.25C7.122,8.322 7.861,5.745 8.96,4.06C5.99,5.198 3.821,7.954 3.533,11.25H7.014ZM3.533,12.75C3.821,16.046 5.99,18.802 8.96,19.94C7.861,18.255 7.122,15.678 7.014,12.75H3.533Z"
android:fillColor="#175DDC"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,10 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M4.375,10C4.375,9.655 4.655,9.375 5,9.375H15C15.345,9.375 15.625,9.655 15.625,10C15.625,10.345 15.345,10.625 15,10.625H5C4.655,10.625 4.375,10.345 4.375,10Z"
android:fillColor="#151B2C"
android:fillType="evenOdd"/>
android:pathData="M6,12.583C6,12.169 6.336,11.833 6.75,11.833L17.75,11.833C18.164,11.833 18.5,12.169 18.5,12.583C18.5,12.997 18.164,13.333 17.75,13.333L6.75,13.333C6.336,13.333 6,12.997 6,12.583Z"
android:fillColor="#000000"/>
</vector>

View file

@ -1,9 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:pathData="M10,1.875C10,1.53 9.72,1.25 9.375,1.25C9.03,1.25 8.75,1.53 8.75,1.875V10H0.625C0.28,10 0,10.28 0,10.625C0,10.97 0.28,11.25 0.625,11.25H8.75V19.375C8.75,19.72 9.03,20 9.375,20C9.72,20 10,19.72 10,19.375V11.25H18.125C18.47,11.25 18.75,10.97 18.75,10.625C18.75,10.28 18.47,10 18.125,10H10V1.875Z"
android:fillColor="#151B2C"/>
android:pathData="M11.75,4.333C12.164,4.333 12.5,4.669 12.5,5.083V11.333H18.75C19.164,11.333 19.5,11.669 19.5,12.083C19.5,12.497 19.164,12.833 18.75,12.833H12.5V19.083C12.5,19.497 12.164,19.833 11.75,19.833C11.336,19.833 11,19.497 11,19.083V12.833H4.75C4.336,12.833 4,12.497 4,12.083C4,11.669 4.336,11.333 4.75,11.333H11V5.083C11,4.669 11.336,4.333 11.75,4.333Z"
android:fillColor="#000000"/>
</vector>

View file

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="33dp"
android:viewportWidth="32"
android:viewportHeight="33">
<path
android:pathData="M16,6.333V16.333M16,16.333V26.333M16,16.333H26M16,16.333L6,16.333"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#000000"
android:strokeLineCap="round"/>
</vector>

View file

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="16dp"
android:height="17dp"
android:viewportWidth="16"
android:viewportHeight="17">
<group>
<clip-path
android:pathData="M0,0.333h16v16h-16z"/>
<path
android:pathData="M7.999,1.334C8.413,1.334 8.749,1.67 8.749,2.084V7.583H14.248C14.663,7.583 14.998,7.919 14.998,8.333C14.998,8.747 14.663,9.083 14.248,9.083H8.749V14.582C8.749,14.997 8.413,15.332 7.999,15.332C7.585,15.332 7.249,14.997 7.249,14.582V9.083H1.75C1.336,9.083 1,8.747 1,8.333C1,7.919 1.336,7.583 1.75,7.583H7.249V2.084C7.249,1.67 7.585,1.334 7.999,1.334Z"
android:fillColor="#000000"/>
</group>
</vector>

View file

@ -1,10 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="24">
android:viewportHeight="25">
<path
android:pathData="M16.015,17.063C14.64,18.205 12.872,18.891 10.945,18.891C6.557,18.891 3,15.334 3,10.946C3,6.557 6.557,3 10.945,3C15.333,3 18.89,6.557 18.89,10.946C18.89,12.872 18.204,14.639 17.063,16.014C17.094,16.037 17.124,16.062 17.151,16.09L20.556,19.495C20.849,19.788 20.849,20.263 20.556,20.556C20.264,20.849 19.789,20.849 19.496,20.556L16.091,17.151C16.063,17.123 16.038,17.094 16.015,17.063ZM17.39,10.946C17.39,14.505 14.504,17.391 10.945,17.391C7.386,17.391 4.5,14.505 4.5,10.946C4.5,7.386 7.386,4.5 10.945,4.5C14.504,4.5 17.39,7.386 17.39,10.946Z"
android:fillColor="#175DDC"
android:pathData="M16.015,17.396C14.64,18.538 12.872,19.224 10.945,19.224C6.557,19.224 3,15.667 3,11.278C3,6.89 6.557,3.333 10.945,3.333C15.333,3.333 18.89,6.89 18.89,11.278C18.89,13.205 18.204,14.972 17.063,16.347C17.094,16.37 17.124,16.395 17.151,16.423L20.556,19.828C20.849,20.121 20.849,20.596 20.556,20.889C20.264,21.182 19.789,21.182 19.496,20.889L16.091,17.484C16.063,17.456 16.038,17.427 16.015,17.396ZM17.39,11.278C17.39,14.838 14.504,17.724 10.945,17.724C7.386,17.724 4.5,14.838 4.5,11.278C4.5,7.719 7.386,4.833 10.945,4.833C14.504,4.833 17.39,7.719 17.39,11.278Z"
android:fillColor="#000000"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,14 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
<path
android:pathData="M23.555,4.127C23.885,2.433 22.06,1.144 20.574,2.022L2.278,12.833C0.835,13.686 1.017,15.827 2.583,16.424L7.999,18.489V22.565C7.999,23.496 8.754,24.25 9.684,24.25C10.176,24.25 10.644,24.035 10.964,23.662L13.379,20.844L17.445,22.653C18.62,23.176 19.975,22.471 20.222,21.209L23.555,4.127ZM11.472,19.995L9.999,19.34V21.714L11.472,19.995ZM18.258,20.826L10.675,17.451L15.737,11.926C16.11,11.518 16.082,10.886 15.675,10.513C15.268,10.14 14.635,10.167 14.262,10.575L8.721,16.624L3.295,14.555L21.592,3.744L18.258,20.826Z"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
</group>
android:viewportHeight="24">
<path
android:pathData="M23.555,3.377C23.885,1.683 22.06,0.394 20.574,1.272L2.278,12.083C0.835,12.936 1.017,15.077 2.583,15.674L7.999,17.739V21.815C7.999,22.746 8.754,23.5 9.684,23.5C10.176,23.5 10.644,23.285 10.964,22.912L13.379,20.094L17.445,21.903C18.62,22.426 19.975,21.721 20.222,20.459L23.555,3.377ZM11.472,19.245L9.999,18.59V20.964L11.472,19.245ZM18.258,20.076L10.675,16.701L15.737,11.176C16.11,10.768 16.082,10.136 15.675,9.763C15.268,9.39 14.635,9.417 14.262,9.825L8.721,15.874L3.295,13.805L21.592,2.994L18.258,20.076Z"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,17 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
<path
android:pathData="M9,22.75V17.75L22,3.25L20,22.25L13,19.75L10,22.75H9Z"
android:fillColor="#DBE5F6"/>
<path
android:pathData="M23.555,4.127C23.885,2.433 22.06,1.144 20.574,2.022L2.278,12.833C0.835,13.686 1.017,15.827 2.583,16.424L7.999,18.489V22.565C7.999,23.496 8.754,24.25 9.684,24.25C10.176,24.25 10.644,24.035 10.964,23.662L13.379,20.844L17.445,22.653C18.62,23.176 19.975,22.471 20.222,21.209L23.555,4.127ZM11.472,19.995L9.999,19.34V21.714L11.472,19.995ZM18.258,20.826L10.675,17.451L15.737,11.926C16.11,11.518 16.082,10.886 15.675,10.513C15.268,10.14 14.635,10.167 14.262,10.575L8.721,16.624L3.295,14.555L21.592,3.744L18.258,20.826Z"
android:fillColor="#175DDC"
android:fillType="evenOdd"/>
</group>
android:viewportHeight="24">
<path
android:pathData="M9,22V17L22,2.5L20,21.5L13,19L10,22H9Z"
android:fillColor="#DBE5F6"/>
<path
android:pathData="M23.555,3.377C23.885,1.683 22.06,0.394 20.574,1.272L2.278,12.083C0.835,12.936 1.017,15.077 2.583,15.674L7.999,17.739V21.815C7.999,22.746 8.754,23.5 9.684,23.5C10.176,23.5 10.644,23.285 10.964,22.912L13.379,20.094L17.445,21.903C18.62,22.426 19.975,21.721 20.222,20.459L23.555,3.377ZM11.472,19.245L9.999,18.59V20.964L11.472,19.245ZM18.258,20.076L10.675,16.701L15.737,11.176C16.11,10.768 16.082,10.136 15.675,9.763C15.268,9.39 14.635,9.417 14.262,9.825L8.721,15.874L3.295,13.805L21.592,2.994L18.258,20.076Z"
android:fillColor="#175DDC"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,17 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
android:pathData="M0,0h24v24h-24z"/>
<path
android:pathData="M16.999,12.75C16.999,15.511 14.761,17.75 11.999,17.75C9.238,17.75 6.999,15.511 6.999,12.75C6.999,9.989 9.238,7.75 11.999,7.75C14.761,7.75 16.999,9.989 16.999,12.75ZM14.999,12.75C14.999,14.407 13.656,15.75 11.999,15.75C10.342,15.75 8.999,14.407 8.999,12.75C8.999,11.093 10.342,9.75 11.999,9.75C13.656,9.75 14.999,11.093 14.999,12.75Z"
android:pathData="M16.999,12C16.999,14.761 14.761,17 11.999,17C9.238,17 6.999,14.761 6.999,12C6.999,9.239 9.238,7 11.999,7C14.761,7 16.999,9.239 16.999,12ZM14.999,12C14.999,13.657 13.656,15 11.999,15C10.342,15 8.999,13.657 8.999,12C8.999,10.343 10.342,9 11.999,9C13.656,9 14.999,10.343 14.999,12Z"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
<path
android:pathData="M15.434,3.355L15.139,1.586C15.058,1.103 14.641,0.75 14.152,0.75H9.846C9.358,0.75 8.94,1.103 8.86,1.586L8.565,3.355C7.468,3.756 6.462,4.344 5.583,5.08L3.9,4.449C3.442,4.278 2.928,4.462 2.683,4.886L0.531,8.614C0.286,9.038 0.384,9.576 0.761,9.886L2.147,11.028C2.05,11.587 1.999,12.163 1.999,12.75C1.999,13.337 2.05,13.913 2.147,14.472L0.761,15.613C0.384,15.924 0.286,16.462 0.531,16.885L2.683,20.614C2.928,21.038 3.442,21.222 3.9,21.051L5.583,20.42C6.462,21.156 7.468,21.744 8.565,22.145L8.86,23.914C8.94,24.397 9.358,24.75 9.846,24.75H14.152C14.641,24.75 15.058,24.397 15.139,23.914L15.434,22.145C16.53,21.744 17.537,21.156 18.416,20.42L20.098,21.051C20.556,21.222 21.071,21.038 21.315,20.614L23.468,16.885C23.712,16.462 23.615,15.924 23.237,15.613L21.851,14.472C21.949,13.913 21.999,13.337 21.999,12.75C21.999,12.163 21.949,11.587 21.851,11.028L23.237,9.886C23.615,9.576 23.712,9.038 23.468,8.614L21.315,4.886C21.071,4.462 20.556,4.278 20.098,4.449L18.416,5.08C17.537,4.344 16.53,3.756 15.434,3.355ZM13.652,4.833L13.305,2.75H10.693L10.346,4.833L9.252,5.234C8.376,5.554 7.571,6.023 6.867,6.613L5.973,7.361L3.992,6.619L2.686,8.881L4.317,10.223L4.118,11.37C4.04,11.817 3.999,12.278 3.999,12.75C3.999,13.222 4.04,13.683 4.118,14.13L4.317,15.277L2.686,16.619L3.992,18.881L5.973,18.139L6.867,18.887C7.571,19.476 8.376,19.946 9.252,20.266L10.346,20.667L10.693,22.75H13.305L13.652,20.667L14.747,20.266C15.622,19.946 16.428,19.476 17.132,18.887L18.025,18.139L20.007,18.881L21.312,16.619L19.682,15.277L19.881,14.13C19.959,13.683 19.999,13.222 19.999,12.75C19.999,12.278 19.959,11.817 19.881,11.37L19.682,10.223L21.312,8.881L20.007,6.619L18.025,7.361L17.132,6.613C16.428,6.023 15.622,5.554 14.747,5.234L13.652,4.833Z"
android:pathData="M15.434,2.605L15.139,0.836C15.058,0.353 14.641,0 14.152,0H9.846C9.358,0 8.94,0.353 8.86,0.836L8.565,2.605C7.468,3.006 6.462,3.594 5.583,4.33L3.9,3.699C3.442,3.528 2.928,3.712 2.683,4.136L0.531,7.864C0.286,8.288 0.384,8.826 0.761,9.136L2.147,10.278C2.05,10.837 1.999,11.413 1.999,12C1.999,12.587 2.05,13.163 2.147,13.722L0.761,14.863C0.384,15.174 0.286,15.712 0.531,16.135L2.683,19.864C2.928,20.288 3.442,20.472 3.9,20.301L5.583,19.67C6.462,20.406 7.468,20.994 8.565,21.395L8.86,23.164C8.94,23.647 9.358,24 9.846,24H14.152C14.641,24 15.058,23.647 15.139,23.164L15.434,21.395C16.53,20.994 17.537,20.406 18.416,19.67L20.098,20.301C20.556,20.472 21.071,20.288 21.315,19.864L23.468,16.135C23.712,15.712 23.615,15.174 23.237,14.863L21.851,13.722C21.949,13.163 21.999,12.587 21.999,12C21.999,11.413 21.949,10.837 21.851,10.278L23.237,9.136C23.615,8.826 23.712,8.288 23.468,7.864L21.315,4.136C21.071,3.712 20.556,3.528 20.098,3.699L18.416,4.33C17.537,3.594 16.53,3.006 15.434,2.605ZM13.652,4.083L13.305,2H10.693L10.346,4.083L9.252,4.484C8.376,4.804 7.571,5.273 6.867,5.863L5.973,6.611L3.992,5.869L2.686,8.131L4.317,9.473L4.118,10.62C4.04,11.067 3.999,11.528 3.999,12C3.999,12.472 4.04,12.933 4.118,13.38L4.317,14.527L2.686,15.869L3.992,18.131L5.973,17.389L6.867,18.137C7.571,18.726 8.376,19.196 9.252,19.516L10.346,19.917L10.693,22H13.305L13.652,19.917L14.747,19.516C15.622,19.196 16.428,18.726 17.132,18.137L18.025,17.389L20.007,18.131L21.312,15.869L19.682,14.527L19.881,13.38C19.959,12.933 19.999,12.472 19.999,12C19.999,11.528 19.959,11.067 19.881,10.62L19.682,9.473L21.312,8.131L20.007,5.869L18.025,6.611L17.132,5.863C16.428,5.273 15.622,4.804 14.747,4.484L13.652,4.083Z"
android:fillColor="#5A6D91"
android:fillType="evenOdd"/>
</group>

View file

@ -1,20 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="25">
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M0,0.75h24v24h-24z"/>
android:pathData="M0,0h24v24h-24z"/>
<path
android:pathData="M20.36,4.389C20.74,4.355 21.117,4.541 21.315,4.885L23.468,8.614C23.712,9.038 23.615,9.576 23.237,9.886L21.851,11.027C21.949,11.587 21.999,12.163 21.999,12.75C21.999,13.337 21.949,13.913 21.851,14.472L23.237,15.613C23.615,15.924 23.712,16.462 23.468,16.885L21.315,20.614C21.071,21.038 20.556,21.222 20.098,21.051L18.416,20.42C17.537,21.156 16.53,21.744 15.434,22.145L15.139,23.914C15.058,24.396 14.641,24.75 14.152,24.75H9.846C9.358,24.75 8.94,24.396 8.86,23.914L8.565,22.145C7.468,21.743 6.462,21.156 5.583,20.42L3.9,21.051C3.814,21.083 3.726,21.103 3.639,21.11L9.878,14.871C10.421,15.414 11.171,15.75 11.999,15.75C13.656,15.75 14.999,14.407 14.999,12.75C14.999,11.921 14.663,11.171 14.121,10.628L20.36,4.389Z"
android:pathData="M20.36,3.639C20.74,3.605 21.117,3.791 21.315,4.135L23.468,7.864C23.712,8.288 23.615,8.826 23.237,9.136L21.851,10.277C21.949,10.837 21.999,11.413 21.999,12C21.999,12.587 21.949,13.163 21.851,13.722L23.237,14.863C23.615,15.174 23.712,15.712 23.468,16.135L21.315,19.864C21.071,20.288 20.556,20.472 20.098,20.301L18.416,19.67C17.537,20.406 16.53,20.994 15.434,21.395L15.139,23.164C15.058,23.646 14.641,24 14.152,24H9.846C9.358,24 8.94,23.646 8.86,23.164L8.565,21.395C7.468,20.993 6.462,20.406 5.583,19.67L3.9,20.301C3.814,20.333 3.726,20.353 3.639,20.36L9.878,14.121C10.421,14.664 11.171,15 11.999,15C13.656,15 14.999,13.657 14.999,12C14.999,11.171 14.663,10.421 14.121,9.879L20.36,3.639Z"
android:fillColor="#DBE5F6"/>
<path
android:pathData="M16.999,12.75C16.999,15.511 14.761,17.75 11.999,17.75C9.238,17.75 6.999,15.511 6.999,12.75C6.999,9.989 9.238,7.75 11.999,7.75C14.761,7.75 16.999,9.989 16.999,12.75ZM14.999,12.75C14.999,14.407 13.656,15.75 11.999,15.75C10.342,15.75 8.999,14.407 8.999,12.75C8.999,11.093 10.342,9.75 11.999,9.75C13.656,9.75 14.999,11.093 14.999,12.75Z"
android:pathData="M16.999,12C16.999,14.761 14.761,17 11.999,17C9.238,17 6.999,14.761 6.999,12C6.999,9.239 9.238,7 11.999,7C14.761,7 16.999,9.239 16.999,12ZM14.999,12C14.999,13.657 13.656,15 11.999,15C10.342,15 8.999,13.657 8.999,12C8.999,10.343 10.342,9 11.999,9C13.656,9 14.999,10.343 14.999,12Z"
android:fillColor="#175DDC"
android:fillType="evenOdd"/>
<path
android:pathData="M15.434,3.355L15.139,1.586C15.058,1.103 14.641,0.75 14.152,0.75H9.846C9.358,0.75 8.94,1.103 8.86,1.586L8.565,3.355C7.468,3.756 6.462,4.344 5.583,5.08L3.9,4.449C3.442,4.278 2.928,4.462 2.683,4.886L0.531,8.614C0.286,9.038 0.384,9.576 0.761,9.886L2.147,11.028C2.05,11.587 1.999,12.163 1.999,12.75C1.999,13.337 2.05,13.913 2.147,14.472L0.761,15.613C0.384,15.924 0.286,16.462 0.531,16.885L2.683,20.614C2.928,21.038 3.442,21.222 3.9,21.051L5.583,20.42C6.462,21.156 7.468,21.744 8.565,22.145L8.86,23.914C8.94,24.397 9.358,24.75 9.846,24.75H14.152C14.641,24.75 15.058,24.397 15.139,23.914L15.434,22.145C16.53,21.744 17.537,21.156 18.416,20.42L20.098,21.051C20.556,21.222 21.071,21.038 21.315,20.614L23.468,16.885C23.712,16.462 23.615,15.924 23.237,15.613L21.851,14.472C21.949,13.913 21.999,13.337 21.999,12.75C21.999,12.163 21.949,11.587 21.851,11.028L23.237,9.886C23.615,9.576 23.712,9.038 23.468,8.614L21.315,4.886C21.071,4.462 20.556,4.278 20.098,4.449L18.416,5.08C17.537,4.344 16.53,3.756 15.434,3.355ZM13.652,4.833L13.305,2.75H10.693L10.346,4.833L9.252,5.234C8.376,5.554 7.571,6.023 6.867,6.613L5.973,7.361L3.992,6.619L2.686,8.881L4.317,10.223L4.118,11.37C4.04,11.817 3.999,12.278 3.999,12.75C3.999,13.222 4.04,13.683 4.118,14.13L4.317,15.277L2.686,16.619L3.992,18.881L5.973,18.139L6.867,18.887C7.571,19.476 8.376,19.946 9.252,20.266L10.346,20.667L10.693,22.75H13.305L13.652,20.667L14.747,20.266C15.622,19.946 16.428,19.476 17.132,18.887L18.025,18.139L20.007,18.881L21.312,16.619L19.682,15.277L19.881,14.13C19.959,13.683 19.999,13.222 19.999,12.75C19.999,12.278 19.959,11.817 19.881,11.37L19.682,10.223L21.312,8.881L20.007,6.619L18.025,7.361L17.132,6.613C16.428,6.023 15.622,5.554 14.747,5.234L13.652,4.833Z"
android:pathData="M15.434,2.605L15.139,0.836C15.058,0.353 14.641,0 14.152,0H9.846C9.358,0 8.94,0.353 8.86,0.836L8.565,2.605C7.468,3.006 6.462,3.594 5.583,4.33L3.9,3.699C3.442,3.528 2.928,3.712 2.683,4.136L0.531,7.864C0.286,8.288 0.384,8.826 0.761,9.136L2.147,10.278C2.05,10.837 1.999,11.413 1.999,12C1.999,12.587 2.05,13.163 2.147,13.722L0.761,14.863C0.384,15.174 0.286,15.712 0.531,16.135L2.683,19.864C2.928,20.288 3.442,20.472 3.9,20.301L5.583,19.67C6.462,20.406 7.468,20.994 8.565,21.395L8.86,23.164C8.94,23.647 9.358,24 9.846,24H14.152C14.641,24 15.058,23.647 15.139,23.164L15.434,21.395C16.53,20.994 17.537,20.406 18.416,19.67L20.098,20.301C20.556,20.472 21.071,20.288 21.315,19.864L23.468,16.135C23.712,15.712 23.615,15.174 23.237,14.863L21.851,13.722C21.949,13.163 21.999,12.587 21.999,12C21.999,11.413 21.949,10.837 21.851,10.278L23.237,9.136C23.615,8.826 23.712,8.288 23.468,7.864L21.315,4.136C21.071,3.712 20.556,3.528 20.098,3.699L18.416,4.33C17.537,3.594 16.53,3.006 15.434,2.605ZM13.652,4.083L13.305,2H10.693L10.346,4.083L9.252,4.484C8.376,4.804 7.571,5.273 6.867,5.863L5.973,6.611L3.992,5.869L2.686,8.131L4.317,9.473L4.118,10.62C4.04,11.067 3.999,11.528 3.999,12C3.999,12.472 4.04,12.933 4.118,13.38L4.317,14.527L2.686,15.869L3.992,18.131L5.973,17.389L6.867,18.137C7.571,18.726 8.376,19.196 9.252,19.516L10.346,19.917L10.693,22H13.305L13.652,19.917L14.747,19.516C15.622,19.196 16.428,18.726 17.132,18.137L18.025,17.389L20.007,18.131L21.312,15.869L19.682,14.527L19.881,13.38C19.959,12.933 19.999,12.472 19.999,12C19.999,11.528 19.959,11.067 19.881,10.62L19.682,9.473L21.312,8.131L20.007,5.869L18.025,6.611L17.132,5.863C16.428,5.273 15.622,4.804 14.747,4.484L13.652,4.083Z"
android:fillColor="#175DDC"
android:fillType="evenOdd"/>
</group>

View file

@ -3,26 +3,12 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12ZM3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:fillType="evenOdd"/>
<path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#5A6D91"
android:fillType="evenOdd"
android:strokeColor="#5A6D91"/>
</group>
<group>
<clip-path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12ZM3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:fillType="evenOdd"/>
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12Z" />
<path
android:pathData="M3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#5A6D91"
android:fillType="evenOdd"
android:strokeColor="#5A6D91"/>
</group>
android:pathData="M3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z" />
</vector>

View file

@ -3,29 +3,15 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M2,19H22V5L10.823,12.824C10.529,13.474 9.897,13.939 9.151,13.994L2,19Z"
android:fillColor="#DBE5F6"/>
<group>
<clip-path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12ZM3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:fillType="evenOdd"/>
<path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillType="evenOdd"
android:strokeColor="#175DDC"/>
</group>
<group>
<clip-path
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12ZM3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:fillType="evenOdd"/>
android:fillColor="#DBE5F6"
android:pathData="M2,19H22V5L10.823,12.824C10.529,13.474 9.897,13.939 9.151,13.994L2,19Z" />
<path
android:pathData="M3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z"
android:strokeWidth="4"
android:fillColor="#00000000"
android:fillColor="#175DDC"
android:fillType="evenOdd"
android:strokeColor="#175DDC"/>
</group>
android:pathData="M9,6C9.552,6 10,6.448 10,7V8.126C10.715,8.31 11.352,8.687 11.854,9.197L12.83,8.634C13.308,8.358 13.92,8.522 14.196,9C14.472,9.478 14.308,10.09 13.83,10.366L12.855,10.929C12.95,11.27 13,11.629 13,12C13,12.371 12.95,12.73 12.855,13.071L13.83,13.634C14.308,13.91 14.472,14.522 14.196,15C13.92,15.478 13.308,15.642 12.83,15.366L11.854,14.802C11.352,15.313 10.715,15.69 10,15.874V17C10,17.552 9.552,18 9,18C8.448,18 8,17.552 8,17V15.874C7.285,15.69 6.647,15.313 6.146,14.802L5.17,15.366C4.692,15.642 4.08,15.478 3.804,15C3.528,14.522 3.692,13.91 4.17,13.634L5.145,13.071C5.05,12.73 5,12.371 5,12C5,11.629 5.05,11.27 5.145,10.929L4.17,10.366C3.692,10.09 3.528,9.478 3.804,9C4.08,8.522 4.692,8.358 5.17,8.634L6.146,9.197C6.647,8.687 7.285,8.31 8,8.126V7C8,6.448 8.448,6 9,6ZM11,12C11,12.357 10.907,12.692 10.743,12.982L10.732,13L10.722,13.017C10.374,13.606 9.733,14 9,14C8.267,14 7.627,13.606 7.278,13.018L7.268,13L7.257,12.981C7.093,12.691 7,12.356 7,12C7,11.644 7.093,11.309 7.257,11.019L7.268,11L7.278,10.982C7.627,10.394 8.267,10 9,10C9.733,10 10.374,10.394 10.722,10.982L10.732,11L10.743,11.019C10.907,11.309 11,11.643 11,12Z" />
<path
android:fillColor="#175DDC"
android:fillType="evenOdd"
android:pathData="M3,22V21C1.343,21 0,19.657 0,18V6C0,4.343 1.343,3 3,3H21C22.657,3 24,4.343 24,6V18C24,19.657 22.657,21 21,21V22C21,22.552 20.552,23 20,23C19.448,23 19,22.552 19,22V21H5V22C5,22.552 4.552,23 4,23C3.448,23 3,22.552 3,22ZM21,5H3C2.448,5 2,5.448 2,6V18C2,18.552 2.448,19 3,19H21C21.552,19 22,18.552 22,18V16H20C19.448,16 19,15.552 19,15C19,14.448 19.448,14 20,14H22V10H20C19.448,10 19,9.552 19,9C19,8.448 19.448,8 20,8H22V6C22,5.448 21.552,5 21,5Z" />
</vector>