1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

602 design fixes 2 (#724)

* #602: profile back icon

* #602: profile fixes

* #602: fixes

* #602: text gravity fix

* #602: update icons

* #602: fixes

* #602: search widget

* #602: fix

* #602: fix icon

* #602: icon update

* #602: style toolbar fixes

* #602: update icons

* #602: fixes

* #602: add margin

* #602: bookmark update

* #602: fixes

* #602: fix

* #602: tests

* #602: tests off
This commit is contained in:
Konstantin Ivanov 2020-08-24 21:34:47 +03:00 committed by GitHub
parent 0f909a86a1
commit 56618d7d12
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 863 additions and 640 deletions

View file

@ -4,12 +4,14 @@ import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.FrameLayout
import androidx.core.os.bundleOf
import androidx.fragment.app.DialogFragment
import androidx.lifecycle.Observer
import androidx.lifecycle.ViewModelProviders
import androidx.lifecycle.lifecycleScope
import com.agileburo.anytype.R
import com.agileburo.anytype.core_ui.extensions.color
import com.agileburo.anytype.core_ui.reactive.clicks
import com.agileburo.anytype.core_utils.ext.hideKeyboard
import com.agileburo.anytype.core_utils.ext.toast
@ -18,6 +20,7 @@ import com.agileburo.anytype.di.common.componentManager
import com.agileburo.anytype.presentation.page.bookmark.CreateBookmarkViewModel
import com.agileburo.anytype.presentation.page.bookmark.CreateBookmarkViewModel.ViewState
import com.agileburo.anytype.ui.page.OnFragmentInteractionListener
import com.google.android.material.bottomsheet.BottomSheetDialog
import kotlinx.android.synthetic.main.dialog_create_bookmark.*
import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.onEach
@ -65,6 +68,16 @@ class CreateBookmarkFragment : BaseBottomSheetFragment(), Observer<ViewState> {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
dialog?.setOnShowListener { dg ->
val bottomSheet = (dg as? BottomSheetDialog)?.findViewById<FrameLayout>(
com.google.android.material.R.id.design_bottom_sheet
)
bottomSheet?.setBackgroundColor(requireContext().color(android.R.color.transparent))
}
cancelBookmarkButton.setOnClickListener {
it.hideKeyboard()
this.dismiss()
}
createBookmarkButton
.clicks()
.onEach {

View file

@ -39,8 +39,6 @@ abstract class BlockActionToolbar : Fragment() {
const val ANIM_DURATION = 300L
const val DEFAULT_MARGIN = 0
const val DIVIDER_HEIGHT = 1
const val DIVIDER_BIG_HEIGHT = 8
const val INTERPOLATOR_OVERSHOOT_TENSION = 1.6f
}
@ -126,17 +124,19 @@ abstract class BlockActionToolbar : Fragment() {
actions.forEach { type ->
when (type) {
ActionItemType.Divider -> {
actionToolbarSize += DIVIDER_HEIGHT
val height = resources.getDimensionPixelSize(R.dimen.default_toolbar_action_item_divider_height)
actionToolbarSize += height
addVerticalDivider(
height = DIVIDER_HEIGHT,
height = height,
alpha = 1.0f,
color = context.color(R.color.light_grayish)
)
}
ActionItemType.DividerExtended -> {
actionToolbarSize += DIVIDER_BIG_HEIGHT
val height = resources.getDimensionPixelSize(R.dimen.default_toolbar_action_item_divider_extended_height)
actionToolbarSize += height
addVerticalDivider(
height = DIVIDER_BIG_HEIGHT,
height = height,
alpha = 1.0f,
color = context.color(R.color.light_grayish)
)

View file

@ -2,7 +2,8 @@ package com.agileburo.anytype.ui.search
import android.os.Bundle
import android.view.View
import android.widget.SearchView
import android.widget.EditText
import androidx.core.widget.doAfterTextChanged
import androidx.lifecycle.ViewModelProviders
import androidx.recyclerview.widget.LinearLayoutManager
import com.agileburo.anytype.R
@ -22,6 +23,9 @@ class PageSearchFragment : ViewStateFragment<PageSearchView>(R.layout.fragment_p
@Inject
lateinit var factory: PageSearchViewModelFactory
lateinit var clearSearchText: View
lateinit var filterInputField: EditText
private val vm by lazy {
ViewModelProviders
.of(this, factory)
@ -32,6 +36,8 @@ class PageSearchFragment : ViewStateFragment<PageSearchView>(R.layout.fragment_p
super.onViewCreated(view, savedInstanceState)
vm.state.observe(viewLifecycleOwner, this)
vm.navigation.observe(viewLifecycleOwner, navObserver)
clearSearchText = searchView.findViewById(R.id.clearSearchText)
filterInputField = searchView.findViewById(R.id.filterInputField)
vm.onViewCreated()
}
@ -41,20 +47,22 @@ class PageSearchFragment : ViewStateFragment<PageSearchView>(R.layout.fragment_p
recyclerView.invisible()
tvScreenStateMessage.invisible()
progressBar.invisible()
with(searchView) {
setOnQueryTextListener(object : SearchView.OnQueryTextListener {
override fun onQueryTextSubmit(query: String?): Boolean {
clearFocus()
return false
}
searchView.findViewById<View>(R.id.clearSearchText).setOnClickListener {
override fun onQueryTextChange(newText: String?): Boolean {
if (newText != null) {
vm.onSearchTextChanged(newText)
}
return false
}
})
}
clearSearchText.setOnClickListener {
filterInputField.setText(EMPTY_FILTER_TEXT)
clearSearchText.invisible()
}
filterInputField.doAfterTextChanged { newText ->
if (newText != null) {
vm.onSearchTextChanged(newText.toString())
}
if (newText.isNullOrEmpty()) {
clearSearchText.invisible()
} else {
clearSearchText.visible()
}
}
recyclerView.layoutManager = LinearLayoutManager(requireContext())
recyclerView.adapter =
@ -103,4 +111,8 @@ class PageSearchFragment : ViewStateFragment<PageSearchView>(R.layout.fragment_p
override fun releaseDependencies() {
componentManager().pageSearchComponent.release()
}
companion object {
const val EMPTY_FILTER_TEXT = ""
}
}

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="13dp"
android:height="22dp"
android:viewportWidth="13"
android:viewportHeight="22">
<path
android:fillColor="#ffffff"
android:fillType="evenOdd"
android:pathData="M12.1517,0.9393C12.7375,1.5251 12.7375,2.4749 12.1517,3.0607L4.2124,11L12.1517,18.9393C12.7375,19.5251 12.7375,20.4749 12.1517,21.0607C11.5659,21.6464 10.6162,21.6464 10.0304,21.0607L1.0304,12.0607C0.4446,11.4749 0.4446,10.5251 1.0304,9.9393L10.0304,0.9393C10.6162,0.3536 11.5659,0.3536 12.1517,0.9393Z" />
</vector>

View file

@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:focusable="true"
android:clickable="true"
android:background="#B3000000"
android:background="@color/anytype_shadow_main"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">

View file

@ -5,7 +5,7 @@
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#52000000">
android:background="@color/anytype_shadow_main">
<FrameLayout
android:id="@+id/icon"

View file

@ -1,62 +1,92 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
style="@style/TopRoundedCardView"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/drag"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/modal_rect_margin_top"
android:contentDescription="@string/content_description_modal_icon"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/sheet_top" />
<EditText
android:id="@+id/urlInput"
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="20dp"
android:layout_marginEnd="20dp"
android:background="@null"
android:hint="@string/hint_paste_or_type_a_url"
android:inputType="textUri"
android:textColor="@color/black"
android:textColorHint="@color/hint_color"
android:textSize="15sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/drag" />
android:layout_height="wrap_content">
<TextView
android:id="@+id/createBookmarkButton"
style="@style/DefaultSolidButtonStyle"
android:layout_width="0dp"
android:layout_height="@dimen/auth_default_button_height"
android:layout_marginStart="20dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="16dp"
android:text="@string/create_bookmark"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/divider" />
<EditText
android:id="@+id/urlInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="28dp"
android:layout_marginEnd="20dp"
android:background="@null"
android:hint="@string/hint_paste_or_type_a_url"
android:inputType="textUri"
android:textColor="@color/black"
android:textColorHint="@color/hint_color"
android:textSize="17sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/divider"
android:layout_width="0dp"
android:layout_height="0.5dp"
android:layout_marginStart="20dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="20dp"
android:background="@color/divider_color"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/urlInput" />
<TextView
android:id="@+id/createBookmarkButton"
android:layout_width="0dp"
android:layout_height="@dimen/auth_default_button_height"
android:layout_marginStart="5dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="16dp"
android:background="@drawable/rectangle_default_button"
android:clickable="true"
android:focusable="true"
android:fontFamily="@font/inter_medium"
android:gravity="center"
android:stateListAnimator="@animator/scale_shrink"
android:text="@string/create_bookmark"
android:textColor="@color/white"
android:textSize="17sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline3"
app:layout_constraintTop_toBottomOf="@+id/divider" />
</androidx.constraintlayout.widget.ConstraintLayout>
<View
android:id="@+id/divider"
android:layout_width="0dp"
android:layout_height="0.5dp"
android:layout_marginStart="20dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="20dp"
android:background="@color/divider_color"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/urlInput" />
<TextView
android:id="@+id/cancelBookmarkButton"
android:layout_width="0dp"
android:layout_height="@dimen/auth_default_button_height"
android:layout_marginStart="20dp"
android:layout_marginEnd="5dp"
android:clickable="true"
android:focusable="true"
android:fontFamily="@font/inter_regular"
android:gravity="center"
android:background="@drawable/bg_bookmark_cancel_button"
android:stateListAnimator="@animator/scale_shrink"
android:text="@string/cancel"
android:textColor="@color/black"
android:textSize="17sp"
app:layout_constraintEnd_toStartOf="@+id/guideline3"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/createBookmarkButton" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.card.MaterialCardView>

View file

@ -94,6 +94,7 @@
android:id="@+id/pickerRecycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/dp_8"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:clipToPadding="false"

View file

@ -20,18 +20,14 @@
app:layout_constraintTop_toBottomOf="@+id/searchView"
tools:visibility="visible" />
<SearchView
<include
android:id="@+id/searchView"
android:layout_width="0dp"
android:layout_height="36dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:iconifiedByDefault="false"
android:queryHint="@string/filter_view_search_hint"
android:background="@drawable/bg_page_nav_filter"
android:closeIcon="@drawable/ic_search_delete"
android:searchIcon="@drawable/ic_search"
layout="@layout/widget_search_view"
android:layout_marginTop="@dimen/dp_16"
android:layout_marginStart="@dimen/dp_16"
android:layout_marginEnd="@dimen/dp_16"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

View file

@ -53,22 +53,20 @@
android:contentDescription="@string/description_profile_picture"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:text_size="@dimen/default_avatar_text_size" />
app:text_size="34sp" />
<TextView
android:id="@+id/name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginTop="@dimen/dp_12"
android:layout_marginEnd="12dp"
android:layout_marginTop="8dp"
android:ellipsize="end"
android:fontFamily="@font/graphik_semibold"
android:maxLines="3"
android:textColor="@color/black"
android:textSize="28sp"
android:maxLines="3"
android:ellipsize="end"
android:drawableEnd="@drawable/ic_profile_forward"
android:fontFamily="@font/graphik_semibold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintEnd_toStartOf="@+id/ivArrowForward"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/avatar"
tools:text="Anton Pronkin" />
@ -79,11 +77,11 @@
android:layout_marginStart="20dp"
android:layout_marginTop="3dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="14dp"
android:layout_marginBottom="15dp"
android:fontFamily="@font/inter_regular"
android:text="@string/your_page"
android:textColor="#ACA996"
android:textSize="15sp"
android:fontFamily="@font/inter_regular"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
@ -101,6 +99,16 @@
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_debug_settings" />
<ImageView
android:id="@+id/ivArrowForward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
app:layout_constraintBottom_toBottomOf="@+id/name"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/name"
app:srcCompat="@drawable/ic_profile_forward" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
@ -145,10 +153,10 @@
<View
android:id="@+id/firstDivider"
style="@style/ProfileItemDivider"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_marginTop="10dp"
style="@style/ProfileItemDivider"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/icWallpaper" />
@ -181,10 +189,10 @@
<View
android:id="@+id/secondDivider"
style="@style/ProfileItemDivider"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_marginTop="10dp"
style="@style/ProfileItemDivider"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/keyIcon" />

View file

@ -37,6 +37,7 @@
android:layout_marginEnd="16dp"
android:ellipsize="end"
android:fontFamily="@font/inter_regular"
android:lineSpacingMultiplier="1.21"
android:maxLines="3"
android:textColor="#6C6A5F"
android:textSize="15sp"
@ -44,7 +45,8 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvPageTitle"
tools:text="The Iraqi-British Zaha Hadid became famous for her intensely futuristic architecture characterized by curving faсt" />
tools:text="The Iraqi-British Zaha Hadid became famous for her intensely futuristic architecture characterized by curving faсt"
tools:visibility="visible" />
<TextView
android:id="@+id/tvPageTitle"

View file

@ -26,8 +26,8 @@
<dimen name="avatar_height_big">96dp</dimen>
<dimen name="avatar_width_big">96dp</dimen>
<dimen name="action_toolbar_block_padding_top">16dp</dimen>
<dimen name="action_toolbar_block_padding_bottom">10dp</dimen>
<dimen name="action_toolbar_block_padding_top">12dp</dimen>
<dimen name="action_toolbar_block_padding_bottom">12dp</dimen>
<dimen name="action_toolbar_bar_margin_bottom">16dp</dimen>
<dimen name="action_toolbar_bar_margin_top">8dp</dimen>

View file

@ -106,7 +106,7 @@ Do the computation of an expensive paragraph of text on a background thread:
<string name="page_icon">Page icon</string>
<string name="page_icon_picker_remove_text">Remove</string>
<string name="create_bookmark">Create bookmark</string>
<string name="create_bookmark">Create</string>
<string name="hint_paste_or_type_a_url">Paste or type a URL</string>
<string name="content_description_menu_icon">Menu icon</string>
<string name="add_new">Add new</string>

View file

@ -163,4 +163,16 @@
<item name="android:textSize">15sp</item>
</style>
<style name="TopRoundedCardView" parent="@style/Widget.MaterialComponents.CardView">
<item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialCardView.Cut</item>
</style>
<style name="ShapeAppearanceOverlay.MaterialCardView.Cut" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSizeTopRight">@dimen/dp_16</item>
<item name="cornerSizeTopLeft">@dimen/dp_16</item>
<item name="cornerSizeBottomRight">0dp</item>
<item name="cornerSizeBottomLeft">0dp</item>
</style>
</resources>

View file

@ -7,12 +7,17 @@ import android.view.View
import android.widget.SearchView
import android.widget.TextView
import androidx.constraintlayout.widget.ConstraintLayout
import androidx.core.widget.doAfterTextChanged
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.agileburo.anytype.core_ui.R
import com.agileburo.anytype.core_utils.ext.imm
import com.agileburo.anytype.core_utils.ext.invisible
import com.agileburo.anytype.core_utils.ext.toast
import com.agileburo.anytype.core_utils.ext.visible
import kotlinx.android.synthetic.main.view_page_links_filter.view.*
import kotlinx.android.synthetic.main.widget_search_view.view.*
import timber.log.Timber
class FilterView @JvmOverloads constructor(
context: Context,
@ -21,7 +26,6 @@ class FilterView @JvmOverloads constructor(
) : ConstraintLayout(context, attrs, defStyleAttr) {
private val recycler: RecyclerView
private val search: SearchView
private val cancel: TextView
private val sorting: View
private var links: MutableList<PageLinkView> = mutableListOf()
@ -32,39 +36,27 @@ class FilterView @JvmOverloads constructor(
init {
LayoutInflater.from(context).inflate(R.layout.view_page_links_filter, this, true)
recycler = recyclerView
search = searchView
cancel = btnCancel
sorting = icSorting
recycler.layoutManager = LinearLayoutManager(context)
cancel.setOnClickListener { cancelClicked?.invoke() }
sorting.setOnClickListener { context.toast("Not implemented yet") }
with(search) {
post {
if (!hasFocus()) {
if (requestFocus()) {
context.imm().showSoftInput(this, 0)
}
}
}
isIconifiedByDefault = false
queryHint = context.resources.getString(R.string.filter_view_search_hint)
setOnQueryTextListener(object : SearchView.OnQueryTextListener {
override fun onQueryTextSubmit(query: String?): Boolean {
search.clearFocus()
return false
}
override fun onQueryTextChange(newText: String?): Boolean {
if (newText != null && recycler.adapter != null) {
clearSearchText.setOnClickListener {
filterInputField.setText(EMPTY_FILTER_TEXT)
clearSearchText.invisible()
}
filterInputField.doAfterTextChanged { newText ->
if (newText != null && recycler.adapter != null) {
(recycler.adapter as PageLinksAdapter).let {
val filtered = links.filterBy(newText)
val filtered = links.filterBy(newText.toString())
it.updateLinks(filtered)
}
}
return false
}
})
if (newText.isNullOrEmpty()) {
clearSearchText.invisible()
} else {
clearSearchText.visible()
}
}
}
@ -73,11 +65,15 @@ class FilterView @JvmOverloads constructor(
this.links.addAll(links)
if (recycler.adapter == null) {
recycler.adapter = PageLinksAdapter(
data = this.links,
data = links,
onClick = { pageId -> pageClicked?.invoke(pageId) }
)
} else {
(recycler.adapter as PageLinksAdapter).updateLinks(this.links)
(recycler.adapter as PageLinksAdapter).updateLinks(links)
}
}
companion object {
private const val EMPTY_FILTER_TEXT = ""
}
}

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#DFDDD0" />
<corners android:radius="8dp" />
</shape>

View file

@ -0,0 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="25dp"
android:height="24dp"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M12.5,12m-9.25,-0a9.25,9.25 0,1 0,18.5 -0a9.25,9.25 0,1 0,-18.5 -0"
android:strokeWidth="1.5"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
<path
android:pathData="M8.25,12.75L16.75,12.75A0.75,0.75 0,0 0,17.5 12L17.5,12A0.75,0.75 0,0 0,16.75 11.25L8.25,11.25A0.75,0.75 0,0 0,7.5 12L7.5,12A0.75,0.75 0,0 0,8.25 12.75z"
android:fillColor="#ACA996"/>
<path
android:pathData="M11.75,7.75L11.75,16.25A0.75,0.75 0,0 0,12.5 17L12.5,17A0.75,0.75 0,0 0,13.25 16.25L13.25,7.75A0.75,0.75 0,0 0,12.5 7L12.5,7A0.75,0.75 0,0 0,11.75 7.75z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -1,20 +1,19 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M5,3L19,3A2,2 0,0 1,21 5L21,15A2,2 0,0 1,19 17L5,17A2,2 0,0 1,3 15L3,5A2,2 0,0 1,5 3z"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
android:pathData="M17.5234,4.5H7.5234C6.1427,4.5 5.0234,5.6193 5.0234,7V13C5.0234,14.3807 6.1427,15.5 7.5234,15.5H17.5234C18.9041,15.5 20.0234,14.3807 20.0234,13V7C20.0234,5.6193 18.9041,4.5 17.5234,4.5ZM7.5234,3C5.3143,3 3.5234,4.7909 3.5234,7V13C3.5234,15.2091 5.3143,17 7.5234,17H17.5234C19.7326,17 21.5234,15.2091 21.5234,13V7C21.5234,4.7909 19.7326,3 17.5234,3H7.5234Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M9,22V20H17V22H9Z"
android:pathData="M4.7734,19.25H7.2734V20.75H4.7734V19.25Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M3,22V20H7V22H3Z"
android:pathData="M16.7734,19.25H20.2734V20.75H16.7734V19.25Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M19,22V20H21V22H19Z"
android:pathData="M8.7734,19.25H15.2734V20.75H8.7734V19.25Z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -1,22 +1,31 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M9,8H11V18H9V8Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M4,6C3.4477,6 3,5.5523 3,5C3,4.4477 3.4477,4 4,4L20,4C20.5523,4 21,4.4477 21,5C21,5.5523 20.5523,6 20,6L4,6Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M13,8H15V18H13V8Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M5,6H7V19C7,19.5523 7.4477,20 8,20H16C16.5523,20 17,19.5523 17,19V6H19C19,8.4687 19,15.0927 19,19.0004C19,20.6572 17.6569,22 16,22H8C6.3432,22 5,20.6569 5,19V6Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M13,3H11C10.4477,3 10,3.4477 10,4H14C14,3.4477 13.5523,3 13,3ZM11,1C9.3432,1 8,2.3431 8,4V6H16V4C16,2.3431 14.6569,1 13,1H11Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<group>
<clip-path
android:pathData="M0.5,0h24v24h-24z"/>
<group>
<clip-path
android:pathData="M0.5,0h24v24h-24z"/>
<path
android:pathData="M10,8H11.5V18H10V8Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M13.5,8H15V18H13.5V8Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M5.2431,6.5C4.8288,6.5 4.5,6.1642 4.5,5.75C4.5,5.3358 4.8358,5 5.25,5L19.75,5C20.1642,5 20.5,5.3358 20.5,5.75C20.5,6.1642 20.1705,6.5 19.7563,6.5C16.9869,6.5 7.9099,6.5 5.2431,6.5Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M14.5,3.5H10.5V5H14.5V3.5ZM10.5,2C9.6716,2 9,2.6716 9,3.5V6.5H16V3.5C16,2.6716 15.3284,2 14.5,2H10.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</group>
<path
android:pathData="M5.7656,5L6.3686,18.1376C6.4421,19.7392 7.7621,21 9.3655,21H15.6372C17.2395,21 18.559,19.7409 18.6339,18.1403L19.25,4.9844L5.7656,5ZM7.336,6.4982L7.867,18.0688C7.9038,18.8696 8.5638,19.5 9.3655,19.5H15.6372C16.4383,19.5 17.0981,18.8704 17.1356,18.0702L17.678,6.4862L7.336,6.4982Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</group>
</vector>

View file

@ -1,16 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M11,15.125C11,15.6082 11.4477,16 12,16C12.5523,16 13,15.6082 13,15.125V2H11V15.125Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M12,18.4L19.7071,10.7046C20.0976,10.3146 20.0976,9.6824 19.7071,9.2925C19.3166,8.9025 18.6834,8.9025 18.2929,9.2925L12,15.5759L5.7071,9.2925C5.3166,8.9025 4.6834,8.9025 4.2929,9.2925C3.9024,9.6824 3.9024,10.3146 4.2929,10.7046L12,18.4Z"
android:pathData="M13.2734,3H11.7734V16H13.2734V3Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M4,20h16v2h-16z"
android:fillColor="#ACA996"/>
android:pathData="M6.2734,19.25C5.8592,19.25 5.5234,19.5858 5.5234,20C5.5234,20.4142 5.8592,20.75 6.2734,20.75H18.7734C19.1877,20.75 19.5234,20.4142 19.5234,20C19.5234,19.5858 19.1877,19.25 18.7734,19.25H6.2734Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M5.9931,10.4697C6.286,10.1768 6.7609,10.1768 7.0538,10.4697L12.5234,15.9393L17.9931,10.4697C18.286,10.1768 18.7609,10.1768 19.0538,10.4697C19.3467,10.7626 19.3467,11.2374 19.0538,11.5303L12.5234,18.0607L5.9931,11.5303C5.7002,11.2374 5.7002,10.7626 5.9931,10.4697Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,15 +1,14 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M5,7L15,7A2,2 0,0 1,17 9L17,19A2,2 0,0 1,15 21L5,21A2,2 0,0 1,3 19L3,9A2,2 0,0 1,5 7z"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
android:pathData="M14.5,8.5H6.5C5.6716,8.5 5,9.1716 5,10V18C5,18.8284 5.6716,19.5 6.5,19.5H14.5C15.3284,19.5 16,18.8284 16,18V10C16,9.1716 15.3284,8.5 14.5,8.5ZM6.5,7C4.8432,7 3.5,8.3432 3.5,10V18C3.5,19.6569 4.8432,21 6.5,21H14.5C16.1569,21 17.5,19.6569 17.5,18V10C17.5,8.3432 16.1569,7 14.5,7H6.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M9,4H19C19.5523,4 20,4.4477 20,5V15C20,15.5523 19.5523,16 19,16H18V18H19C20.6569,18 22,16.6569 22,15V5C22,3.3431 20.6569,2 19,2H9C7.3432,2 6,3.3431 6,5V6H8V5C8,4.4477 8.4477,4 9,4Z"
android:pathData="M10.5,4.5H18.5C19.3284,4.5 20,5.1716 20,6V14C20,14.8284 19.3284,15.5 18.5,15.5H17.5V17H18.5C20.1569,17 21.5,15.6569 21.5,14V6C21.5,4.3432 20.1569,3 18.5,3H10.5C8.8432,3 7.5,4.3432 7.5,6V7H9V6C9,5.1716 9.6716,4.5 10.5,4.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,18 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M11.2929,7.2929C11.6834,6.9024 12.3166,6.9024 12.7071,7.2929L17.4142,12L12.7071,16.7071C12.3166,17.0976 11.6834,17.0976 11.2929,16.7071C10.9024,16.3166 10.9024,15.6834 11.2929,15.2929L14.5858,12L11.2929,8.7071C10.9024,8.3166 10.9024,7.6834 11.2929,7.2929Z"
android:pathData="M17.5,4.5H7.5C6.1193,4.5 5,5.6193 5,7V17C5,18.3807 6.1193,19.5 7.5,19.5H17.5C18.8807,19.5 20,18.3807 20,17V7C20,5.6193 18.8807,4.5 17.5,4.5ZM7.5,3C5.2909,3 3.5,4.7909 3.5,7V17C3.5,19.2091 5.2909,21 7.5,21H17.5C19.7091,21 21.5,19.2091 21.5,17V7C21.5,4.7909 19.7091,3 17.5,3H7.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M7,11h8v2h-8z"
android:pathData="M8,11.25H16V12.75H8V11.25Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M5.125,3L19,3A2,2 0,0 1,21 5L21,19A2,2 0,0 1,19 21L5.125,21A2,2 0,0 1,3.125 19L3.125,5A2,2 0,0 1,5.125 3z"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
android:pathData="M11.9697,7.4697C12.2626,7.1768 12.7374,7.1768 13.0303,7.4697L17.5607,12L13.0303,16.5303C12.7374,16.8232 12.2626,16.8232 11.9697,16.5303C11.6768,16.2374 11.6768,15.7626 11.9697,15.4697L15.4393,12L11.9697,8.5303C11.6768,8.2374 11.6768,7.7626 11.9697,7.4697Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,12 +1,14 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M20,0.9766h2v22h-2z"
android:fillColor="#ACA996"/>
android:pathData="M20.5469,2.375L20.5469,2.375A0.375,0.375 0,0 1,20.9219 2.75L20.9219,21.25A0.375,0.375 0,0 1,20.5469 21.625L20.5469,21.625A0.375,0.375 0,0 1,20.1719 21.25L20.1719,2.75A0.375,0.375 0,0 1,20.5469 2.375z"
android:strokeWidth="0.75"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
<path
android:pathData="M10.3255,4.9978L5.6443,19.0021H8.0926L9.1894,15.5353H14.5365L15.653,19.0021H18.3559L13.7335,4.9978H10.3255ZM9.7966,13.6354L11.8728,7.1327L13.9294,13.6354H9.7966Z"
android:pathData="M8.5816,18L9.6906,14.6919H14.4093L15.5123,18H17.447L13.0998,5.5H10.9941L6.647,18H8.5816ZM10.2214,13.105L12.0027,7.7705H12.0971L13.8784,13.105H10.2214Z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -1,22 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M19,3.9686C19,3.4163 19.4477,2.9686 20,2.9686C20.5523,2.9686 21,3.4163 21,3.9686V9.9686H19V3.9686Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M15,9.9999C14.4477,9.9999 14,9.5522 14,8.9999C14,8.4476 14.4477,7.9999 15,7.9999H21V9.9999H15Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M5,19.9999C5,20.5522 4.5523,20.9999 4,20.9999C3.4477,20.9999 3,20.5522 3,19.9999V13.9999H5V19.9999Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M9,13.9686C9.5523,13.9686 10,14.4163 10,14.9686C10,15.5209 9.5523,15.9686 9,15.9686H3V13.9686H9Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M18.679,13.9686C17.8184,16.8601 15.1399,18.9686 11.9689,18.9686C8.7979,18.9686 6.1193,16.8601 5.2588,13.9686H3.1919C4.1013,17.9766 7.6857,20.9686 11.9689,20.9686C16.2521,20.9686 19.8364,17.9766 20.7459,13.9686H18.679ZM5.2588,9.9686C6.1193,7.0771 8.7979,4.9686 11.9689,4.9686C15.1399,4.9686 17.8184,7.0771 18.679,9.9686H20.7459C19.8364,5.9606 16.2521,2.9686 11.9689,2.9686C7.6857,2.9686 4.1013,5.9606 3.1919,9.9686H5.2588Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<group>
<clip-path
android:pathData="M0.5234,0h24v24h-24z"/>
<path
android:pathData="M6.0631,14C6.9237,16.8915 9.6022,19 12.7733,19C15.9443,19 18.6228,16.8915 19.4834,14H21.0366C20.1372,17.7294 16.7788,20.5 12.7733,20.5C8.7677,20.5 5.4093,17.7294 4.5099,14H6.0631ZM19.4834,10C18.6228,7.1085 15.9443,5 12.7733,5C9.6022,5 6.9237,7.1085 6.0631,10H4.5099C5.4093,6.2706 8.7677,3.5 12.7733,3.5C16.7788,3.5 20.1372,6.2706 21.0366,10H19.4834Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M20.7734,4C20.3592,4 20.0234,4.3358 20.0234,4.75V8.5H16.2734C15.8592,8.5 15.5234,8.8358 15.5234,9.25C15.5234,9.6642 15.8592,10 16.2734,10H21.5234V4.75C21.5234,4.3358 21.1877,4 20.7734,4Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M4.2734,20C4.6877,20 5.0234,19.6642 5.0234,19.25V15.5H8.7734C9.1876,15.5 9.5234,15.1642 9.5234,14.75C9.5234,14.3358 9.1876,14 8.7734,14H3.5234V19.25C3.5234,19.6642 3.8592,20 4.2734,20Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</group>
</vector>

View file

@ -1,12 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M4.8433,5L0.1621,19.0043H2.6104L3.7073,15.5375H9.0544L10.1708,19.0043H12.8737L8.2513,5H4.8433ZM4.3144,13.6376L6.3906,7.1349L8.4472,13.6376H4.3144Z"
android:pathData="M7.5,3.75L17.5,3.75A3.25,3.25 0,0 1,20.75 7L20.75,17A3.25,3.25 0,0 1,17.5 20.25L7.5,20.25A3.25,3.25 0,0 1,4.25 17L4.25,7A3.25,3.25 0,0 1,7.5 3.75z"
android:strokeWidth="1.5"
android:fillColor="#00000000"
android:strokeColor="#ACA996"/>
<path
android:pathData="M12.9401,7H11.3541L8.1665,16.4453H9.8579L12.9401,7Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M17.4811,19.2002C19.048,19.2002 19.9294,18.6322 20.6149,17.7508V19.0043H22.9457V12.2862C22.9457,9.4657 21.1438,8.5452 18.8522,8.5452C16.5605,8.5452 14.6802,9.5441 14.4648,11.9336H16.7564C16.8935,10.9151 17.4615,10.3275 18.715,10.3275C20.1253,10.3275 20.5758,10.9935 20.5758,12.3841V12.913H19.3026C16.3843,12.913 14.0535,13.7748 14.0535,16.1643C14.0535,18.2992 15.6008,19.2002 17.4811,19.2002ZM18.0491,17.4962C16.8739,17.4962 16.4038,16.9282 16.4038,16.0664C16.4038,14.8128 17.5594,14.4015 19.3614,14.4015H20.5758V15.42C20.5758,16.7519 19.5181,17.4962 18.0491,17.4962Z"
android:pathData="M12.0599,7H13.6459L16.8335,16.4453H15.1421L12.0599,7Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M10.499,12.6953H14.5005V13.9953H10.499V12.6953Z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -1,20 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M8.2071,12.2929C7.8166,11.9024 7.1834,11.9024 6.7929,12.2929L2.0858,17L6.7929,21.7071C7.1834,22.0976 7.8166,22.0976 8.2071,21.7071C8.5976,21.3166 8.5976,20.6834 8.2071,20.2929L4.9142,17L8.2071,13.7071C8.5976,13.3166 8.5976,12.6834 8.2071,12.2929Z"
android:pathData="M5.5,16.25H20V17.75H5.5V16.25Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M19.5,6.25H5V7.75H19.5V6.25Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M16.2197,2.7197C16.5126,2.4268 16.9874,2.4268 17.2803,2.7197L21.5607,7L17.2803,11.2803C16.9874,11.5732 16.5126,11.5732 16.2197,11.2803C15.9268,10.9874 15.9268,10.5126 16.2197,10.2197L19.4393,7L16.2197,3.7803C15.9268,3.4874 15.9268,3.0126 16.2197,2.7197Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M4,16h16v2h-16z"
android:fillColor="#ACA996"/>
<path
android:pathData="M15.7926,2.2929C16.1832,1.9024 16.8163,1.9024 17.2069,2.2929L21.914,7L17.2069,11.7071C16.8163,12.0976 16.1832,12.0976 15.7926,11.7071C15.4021,11.3166 15.4021,10.6834 15.7926,10.2929L19.0855,7L15.7926,3.7071C15.4021,3.3166 15.4021,2.6834 15.7926,2.2929Z"
android:pathData="M8.7803,12.7197C8.4874,12.4268 8.0126,12.4268 7.7197,12.7197L3.4393,17L7.7197,21.2803C8.0126,21.5732 8.4874,21.5732 8.7803,21.2803C9.0732,20.9874 9.0732,20.5126 8.7803,20.2197L5.5607,17L8.7803,13.7803C9.0732,13.4874 9.0732,13.0126 8.7803,12.7197Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M19.9998,6l-16,0l-0,2l16,0z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -1,13 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M20,26.0001L28,30.0001V12.0001C28,10.8956 27.1046,10.0001 26,10.0001H14C12.8954,10.0001 12,10.8956 12,12.0001V30.0001L20,26.0001ZM14,26.7641L20,23.7641L26,26.7641V12.0001H14V26.7641Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M22,27.9995L30,31.9995V14.9995C30,13.3427 28.6569,11.9995 27,11.9995H17C15.3431,11.9995 14,13.3427 14,14.9995V31.9995L22,27.9995ZM15.5,29.5725L22,26.3225L28.5,29.5725V14.9995C28.5,14.1711 27.8284,13.4995 27,13.4995H17C16.1716,13.4995 15.5,14.1711 15.5,14.9995V29.5725Z"
android:fillColor="#1BA0EB"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,24 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#B8F1A4"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#2BA930"
android:pathData="M16.9158,12.9781h12v2h-12z" />
<path
android:fillColor="#2BA930"
android:pathData="M16.9158,18.9781h8v2h-8z" />
<path
android:fillColor="#2BA930"
android:pathData="M16.9158,24.9781h12v2h-12z" />
<path
android:fillColor="#2BA930"
android:pathData="M13.0403,27.9781C14.1449,27.9781 15.0403,27.0827 15.0403,25.9781C15.0403,24.8736 14.1449,23.9781 13.0403,23.9781C11.9357,23.9781 11.0403,24.8736 11.0403,25.9781C11.0403,27.0827 11.9357,27.9781 13.0403,27.9781Z" />
<path
android:fillColor="#2BA930"
android:pathData="M13.0403,15.9781C14.1449,15.9781 15.0403,15.0827 15.0403,13.9781C15.0403,12.8736 14.1449,11.9781 13.0403,11.9781C11.9357,11.9781 11.0403,12.8736 11.0403,13.9781C11.0403,15.0827 11.9357,15.9781 13.0403,15.9781Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#B8F1A4"/>
<path
android:pathData="M14,15m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
android:fillColor="#2BA930"/>
<path
android:pathData="M14,29m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,14.25h12v1.5h-12z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,21.25h8v1.5h-8z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,28.2646h12v1.5h-12z"
android:fillColor="#2BA930"/>
</vector>

View file

@ -1,17 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#B8F1A4"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#2BA930"
android:fillType="evenOdd"
android:pathData="M20,29.0001C24.9706,29.0001 29,24.9707 29,20.0001C29,15.0296 24.9706,11.0001 20,11.0001C15.0294,11.0001 11,15.0296 11,20.0001C11,24.9707 15.0294,29.0001 20,29.0001ZM20,31.0001C26.0751,31.0001 31,26.0753 31,20.0001C31,13.925 26.0751,9.0001 20,9.0001C13.9249,9.0001 9,13.925 9,20.0001C9,26.0753 13.9249,31.0001 20,31.0001Z" />
<path
android:fillColor="#2BA930"
android:fillType="evenOdd"
android:pathData="M25.7072,16.7072L18.0001,24.4143L14.293,20.7072L15.7072,19.293L18.0001,21.5859L24.293,15.293L25.7072,16.7072Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#B8F1A4"/>
<path
android:pathData="M22,31.5C27.2467,31.5 31.5,27.2467 31.5,22C31.5,16.7533 27.2467,12.5 22,12.5C16.7533,12.5 12.5,16.7533 12.5,22C12.5,27.2467 16.7533,31.5 22,31.5ZM22,33C28.0751,33 33,28.0751 33,22C33,15.9249 28.0751,11 22,11C15.9249,11 11,15.9249 11,22C11,28.0751 15.9249,33 22,33Z"
android:fillColor="#2BA930"
android:fillType="evenOdd"/>
<path
android:pathData="M27.6241,17.416L21.1166,27.1772L16.4697,22.5303L17.5304,21.4697L20.8835,24.8228L26.376,16.584L27.6241,17.416Z"
android:fillColor="#2BA930"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,17 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#F1CAFB"
android:pathData="M8,0L32,0A8,8 0,0 1,40 8L40,32A8,8 0,0 1,32 40L8,40A8,8 0,0 1,0 32L0,8A8,8 0,0 1,8 0z" />
<path
android:fillColor="#A252E0"
android:fillType="evenOdd"
android:pathData="M17.1973,13.2932C17.5878,13.6837 17.5878,14.3169 17.1973,14.7074L11.9044,20L17.1973,25.2926C17.5878,25.6831 17.5878,26.3163 17.1973,26.7068C16.8068,27.0973 16.1736,27.0974 15.7831,26.7068L9.0759,20L15.7831,13.2932C16.1736,12.9027 16.8068,12.9027 17.1973,13.2932Z" />
<path
android:fillColor="#A252E0"
android:fillType="evenOdd"
android:pathData="M22.8335,13.2932C22.4429,13.6837 22.443,14.3169 22.8335,14.7074L28.1263,20L22.8335,25.2926C22.443,25.6831 22.4429,26.3163 22.8335,26.7068C23.224,27.0973 23.8571,27.0974 24.2477,26.7068L30.9548,20L24.2477,13.2932C23.8571,12.9027 23.224,12.9027 22.8335,13.2932Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#F1CAFB"/>
<path
android:pathData="M20.5303,18.4702C20.8232,18.7631 20.8232,19.2379 20.5303,19.5308L18.0607,22.0005L20.5303,24.4702C20.8232,24.7631 20.8232,25.2379 20.5303,25.5308C20.2374,25.8237 19.7626,25.8237 19.4697,25.5308L15.9393,22.0005L19.4697,18.4702C19.7626,18.1773 20.2374,18.1773 20.5303,18.4702Z"
android:fillColor="#A252E0"
android:fillType="evenOdd"/>
<path
android:pathData="M23.4697,18.4697C23.1768,18.7626 23.1768,19.2374 23.4697,19.5303L25.9393,22L23.4697,24.4697C23.1768,24.7626 23.1768,25.2374 23.4697,25.5303C23.7626,25.8232 24.2374,25.8232 24.5303,25.5303L28.0607,22L24.5303,18.4697C24.2374,18.1768 23.7626,18.1768 23.4697,18.4697Z"
android:fillColor="#A252E0"
android:fillType="evenOdd"/>
<path
android:pathData="M29,13.5H15C14.1716,13.5 13.5,14.1716 13.5,15V29C13.5,29.8284 14.1716,30.5 15,30.5H29C29.8284,30.5 30.5,29.8284 30.5,29V15C30.5,14.1716 29.8284,13.5 29,13.5ZM15,12C13.3431,12 12,13.3431 12,15V29C12,30.6569 13.3431,32 15,32H29C30.6569,32 32,30.6569 32,29V15C32,13.3431 30.6569,12 29,12H15Z"
android:fillColor="#A252E0"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,15 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<group>
<clip-path android:pathData="M8,8.0001H32V32.0001H8V8.0001Z M 0,0" />
<path
android:fillColor="#1BA0EB"
android:pathData="M24.9501,16.6305C26.1217,15.459 26.1217,13.5595 24.9501,12.3879C23.7785,11.2163 21.879,11.2163 20.7074,12.3879L13.6364,19.459C11.6837,21.4116 11.6834,24.577 13.636,26.5296C15.5886,28.4823 18.7544,28.4823 20.707,26.5296L27.0709,20.1656L28.4852,21.5798L22.1212,27.9438C19.3875,30.6775 14.9554,30.6775 12.2218,27.9439C9.4881,25.2102 9.4881,20.778 12.2218,18.0444L19.2932,10.9737C21.2458,9.0211 24.4117,9.0211 26.3643,10.9737C28.3169,12.9263 28.3169,16.0921 26.3643,18.0448L20.0003,24.4087C18.8288,25.5803 16.9293,25.5803 15.7577,24.4087C14.5861,23.2371 14.5861,21.3376 15.7577,20.1661L21.4146,14.5092L22.8288,15.9234L17.1719,21.5803C16.7814,21.9708 16.7814,22.604 17.1719,22.9945C17.5624,23.385 18.1956,23.385 18.5861,22.9945L24.9501,16.6305Z" />
</group>
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M27.5888,14.4075C26.4173,13.2359 24.5178,13.2359 23.3462,14.4075L15.3912,22.3624C13.5363,24.2174 13.5363,27.225 15.3912,29.08C17.2462,30.9349 20.2538,30.9349 22.1088,29.08L29.3566,21.8321L30.4173,22.8928L23.1694,30.1406C20.7286,32.5814 16.7714,32.5814 14.3306,30.1406C11.8898,27.6998 11.8898,23.7426 14.3306,21.3018L22.2855,13.3468C24.0429,11.5895 26.8921,11.5895 28.6495,13.3468C30.4069,15.1042 30.4069,17.9534 28.6495,19.7108L21.4017,26.9586C20.3277,28.0326 18.5865,28.0326 17.5126,26.9586C16.4386,25.8847 16.4386,24.1435 17.5126,23.0695L24.0533,16.5288L25.114,17.5895L18.5732,24.1302C18.0851,24.6184 18.0851,25.4098 18.5732,25.898C19.0614,26.3861 19.8528,26.3861 20.341,25.898L27.5888,18.6501C28.7604,17.4786 28.7604,15.5791 27.5888,14.4075Z"
android:fillColor="#1BA0EB"/>
</vector>

View file

@ -1,19 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#FEF3C5"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<group>
<clip-path android:pathData="M8,8.0001H32V32.0001H8V8.0001Z M 0,0" />
<path
android:fillColor="#E89D00"
android:pathData="M27.1665,18.8382V27.0002H29.0425V16.9902H27.3765L25.0525,18.6422V20.2802L27.1665,18.8382Z" />
<path
android:fillColor="#E89D00"
android:fillType="evenOdd"
android:pathData="M10.002,13H12.002V19H19.002V13H21.002V27H19.002V20.7H12.002V27H10.002V13Z" />
</group>
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#FFEE94"/>
<path
android:pathData="M13,21H22V22.5H13V21Z"
android:fillColor="#E88B00"/>
<path
android:pathData="M12.5,14H14V30H12.5V14Z"
android:fillColor="#E88B00"/>
<path
android:pathData="M21.5,14H23V30H21.5V14Z"
android:fillColor="#E88B00"/>
<path
android:pathData="M32,20H30.5172L28,21.6309V23.0762L30.4138,21.5137H30.4729V30H32V20Z"
android:fillColor="#E88B00"/>
</vector>

View file

@ -1,19 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#FEF3C5"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<group>
<clip-path android:pathData="M8,8.0001H32V32.0001H8V8.0001Z M 0,0" />
<path
android:fillColor="#E89D00"
android:pathData="M22.7639,26.6637V26.9997H30.0019V25.5577H25.7459L27.9719,23.3877C29.1619,22.2257 29.9319,21.1057 29.9319,19.8037C29.9319,18.0537 28.6999,16.8497 26.6279,16.8497C24.4999,16.8497 23.1979,18.0957 23.0719,20.2937H24.7799C24.9479,18.8797 25.5639,18.3057 26.5719,18.3057C27.5379,18.3057 28.0699,18.8797 28.0699,19.8317C28.0699,20.7837 27.4959,21.6657 26.5439,22.6737L22.7639,26.6637Z" />
<path
android:fillColor="#E89D00"
android:fillType="evenOdd"
android:pathData="M10.002,13.0001H12.002V19.0001H19.002V13.0001H21.002V27.0001H19.002V20.7001H12.002V27.0001H10.002V13.0001Z" />
</group>
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#FFEE94"/>
<path
android:pathData="M13,21.001h9v1.5h-9z"
android:fillColor="#E88B00"/>
<path
android:pathData="M12.5,14.001h1.5v16h-1.5z"
android:fillColor="#E88B00"/>
<path
android:pathData="M21.5,14.001h1.5v16h-1.5z"
android:fillColor="#E88B00"/>
<path
android:pathData="M26.21,30.0163H32.835V28.7139H28.3037V28.6402L30.3039,26.5466C32.1469,24.6839 32.6728,23.7944 32.6728,22.6689C32.6728,21.052 31.3557,19.8135 29.4586,19.8135C27.5763,19.8135 26.2002,21.0323 26.2002,22.8704H27.65C27.6451,21.7892 28.343,21.0815 29.4291,21.0815C30.4514,21.0815 31.2279,21.7105 31.2279,22.7131C31.2279,23.6027 30.6971,24.2416 29.6159,25.3867L26.21,28.9154V30.0163Z"
android:fillColor="#E88B00"/>
</vector>

View file

@ -1,19 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#FEF3C5"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<group>
<clip-path android:pathData="M8,8.0001H32V32.0001H8V8.0001Z M 0,0" />
<path
android:fillColor="#E89D00"
android:fillType="evenOdd"
android:pathData="M10.002,13.0001H12.002V19.0001H19.002V13.0001H21.002V27.0001H19.002V20.7001H12.002V27.0001H10.002V13.0001Z" />
<path
android:fillColor="#E89D00"
android:pathData="M27.058,27.1497C29.354,27.1497 30.81,26.0006 30.81,24.1508C30.81,22.8055 30.054,21.9927 28.878,21.7265C29.844,21.3481 30.502,20.6754 30.502,19.5403C30.502,18.0409 29.284,16.8497 27.198,16.8497C25.042,16.8497 23.768,18.181 23.656,19.9187H25.308C25.42,18.9097 26.106,18.2651 27.17,18.2651C28.22,18.2651 28.724,18.8537 28.724,19.6805C28.724,20.6334 28.22,21.1519 27.058,21.1519H26.344V22.4832H27.114C28.318,22.4832 28.92,23.0297 28.92,24.1228C28.92,25.1318 28.318,25.7484 27.016,25.7484C25.672,25.7484 25.084,24.9636 24.986,23.9126H23.292C23.362,25.8184 24.678,27.1497 27.058,27.1497Z" />
</group>
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#FFEE94"/>
<path
android:pathData="M13,21.001h9v1.5h-9z"
android:fillColor="#E88B00"/>
<path
android:pathData="M12.5,14.001h1.5v16h-1.5z"
android:fillColor="#E88B00"/>
<path
android:pathData="M21.5,14.001h1.5v16h-1.5z"
android:fillColor="#E88B00"/>
<path
android:pathData="M29.4976,30.0873C31.5197,30.0873 33.0048,28.8785 33,27.2345C33.0048,25.9822 32.2453,25.0829 30.9295,24.8798V24.8024C31.9647,24.5365 32.6372,23.7242 32.6323,22.6121C32.6372,21.1567 31.4423,19.9141 29.5363,19.9141C27.7173,19.9141 26.2564,21.0116 26.208,22.6218H27.6545C27.6883,21.7127 28.5446,21.1615 29.5169,21.1615C30.528,21.1615 31.1907,21.7756 31.1859,22.6894C31.1907,23.6468 30.4215,24.2754 29.3234,24.2754H28.4865V25.4938H29.3234C30.6973,25.4938 31.4907,26.1901 31.4907,27.1862C31.4907,28.1484 30.6538,28.8011 29.4879,28.8011C28.414,28.8011 27.5771,28.2499 27.519,27.3699H26C26.0629,28.9848 27.4948,30.0873 29.4976,30.0873Z"
android:fillColor="#E88B00"/>
</vector>

View file

@ -1,21 +1,21 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#FEF3C5"
android:pathData="M8,0L32,0A8,8 0,0 1,40 8L40,32A8,8 0,0 1,32 40L8,40A8,8 0,0 1,0 32L0,8A8,8 0,0 1,8 0z" />
<path
android:fillColor="#E89D00"
android:pathData="M16,13h12v2h-12z" />
<path
android:fillColor="#E89D00"
android:pathData="M16,19h12v2h-12z" />
<path
android:fillColor="#E89D00"
android:pathData="M16,25h12v2h-12z" />
<path
android:fillColor="#E89D00"
android:pathData="M11,11h1v18h-1z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#FFEE94"/>
<path
android:pathData="M20,14.251h12v1.5h-12z"
android:fillColor="#E88B00"/>
<path
android:pathData="M14,32.001l0,-20l1,-0l0,20z"
android:fillColor="#E88B00"/>
<path
android:pathData="M20,21.25H32V22.75H20V21.25Z"
android:fillColor="#E88B00"/>
<path
android:pathData="M20,28.2534h12v1.5h-12z"
android:fillColor="#E88B00"/>
</vector>

View file

@ -1,18 +1,18 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#F1CAFB"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#A252E0"
android:pathData="M14,13.0001h11.9688v2h-11.9688z" />
<path
android:fillColor="#A252E0"
android:pathData="M11,19.0001h18v2h-18z" />
<path
android:fillColor="#A252E0"
android:pathData="M14,25.0001h11.9688v2h-11.9688z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#F1CAFB"/>
<path
android:pathData="M16,14.25h12v1.5h-12z"
android:fillColor="#A252E0"/>
<path
android:pathData="M12,21.25h20v1.5h-20z"
android:fillColor="#A252E0"/>
<path
android:pathData="M16,28.25h12v1.5h-12z"
android:fillColor="#A252E0"/>
</vector>

View file

@ -1,20 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M14,12.1461H26V28.1461H14V23.1461H12V28.1461C12,29.2507 12.8954,30.1461 14,30.1461H26C27.1046,30.1461 28,29.2507 28,28.1461V12.1461C28,11.0415 27.1046,10.1461 26,10.1461H14C12.8954,10.1461 12,11.0415 12,12.1461V17.1461H14V12.1461Z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M18.7929,15.939C19.1834,15.5485 19.8166,15.5485 20.2071,15.939L24.4142,20.1461L20.2071,24.3532C19.8166,24.7437 19.1834,24.7437 18.7929,24.3532C18.4024,23.9627 18.4024,23.3295 18.7929,22.939L21.5858,20.1461L18.7929,17.3532C18.4024,16.9627 18.4024,16.3295 18.7929,15.939Z" />
<path
android:fillColor="#1BA0EB"
android:pathData="M9,19.1461H22V21.1461H9V19.1461Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M16,13.5H28C28.2761,13.5 28.5,13.7239 28.5,14V30C28.5,30.2761 28.2761,30.5 28,30.5H16C15.7239,30.5 15.5,30.2761 15.5,30V25H14V30C14,31.1046 14.8954,32 16,32H28C29.1046,32 30,31.1046 30,30V14C30,12.8954 29.1046,12 28,12H16C14.8954,12 14,12.8954 14,14V19H15.5V14C15.5,13.7239 15.7239,13.5 16,13.5Z"
android:fillColor="#1BA0EB"
android:fillType="evenOdd"/>
<path
android:pathData="M20.4697,17.4697C20.7626,17.1768 21.2374,17.1768 21.5303,17.4697L26.0607,22L21.5303,26.5303C21.2374,26.8232 20.7626,26.8232 20.4697,26.5303C20.1768,26.2374 20.1768,25.7626 20.4697,25.4697L23.9393,22L20.4697,18.5303C20.1768,18.2374 20.1768,17.7626 20.4697,17.4697Z"
android:fillColor="#1BA0EB"
android:fillType="evenOdd"/>
<path
android:pathData="M25,21.25H10V22.75H25V21.25Z"
android:fillColor="#1BA0EB"/>
</vector>

View file

@ -1,26 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#B8F1A4"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#2BA930"
android:fillType="evenOdd"
android:pathData="M11.0403,28.8355L13.265,26.4834C13.8509,25.8635 14.2246,25.3286 14.2246,24.7766C14.2246,24.2671 13.9528,23.953 13.4179,23.953C12.8744,23.953 12.5433,24.2586 12.4499,25.0653H11.2016C11.2696,23.6473 12.1102,22.9 13.4773,22.9C14.1481,22.9 14.6746,23.0953 15.0397,23.4095C15.3879,23.7407 15.5832,24.1992 15.5832,24.7427C15.5832,25.5493 15.1161,26.2117 14.4114,26.891L13.265,28.0118H15.6256V29.0563H11.0403V28.8355Z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0525,12.9781h11.9688v2h-11.9688z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0525,24.9781h11.9688v2h-11.9688z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0525,18.9781h9v2h-9z" />
<path
android:fillColor="#2BA930"
android:fillType="evenOdd"
android:pathData="M12.9582,12.3165L11.7383,13.1158V11.9547L13.1265,10.9703H14.3212V16.986H12.9582V12.3165Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#B8F1A4"/>
<path
android:pathData="M20,14.25h12v1.5h-12z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,21.25h8v1.5h-8z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,28.2646h12v1.5h-12z"
android:fillColor="#2BA930"/>
<path
android:pathData="M15,12.002H13.9762L12.5,12.96V13.9561L13.8892,13.0596H13.924V18.002H15V12.002Z"
android:fillColor="#2BA930"/>
<path
android:pathData="M12.0339,31.9951H16V31.0992H13.4802V31.0587L14.4774,30.0211C15.6017,28.9171 15.9124,28.3795 15.9124,27.7119C15.9124,26.7206 15.1243,25.9951 13.9605,25.9951C12.8136,25.9951 12,26.7234 12,27.8477H12.9972C12.9972,27.2437 13.3701,26.8651 13.9463,26.8651C14.4972,26.8651 14.9068,27.209 14.9068,27.7668C14.9068,28.261 14.613,28.6136 14.0424,29.2061L12.0339,31.2206V31.9951Z"
android:fillColor="#2BA930"/>
</vector>

View file

@ -1,13 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M21.85,10.0001L28,16.1501V28.0001C28,29.1047 27.1046,30.0001 26,30.0001H14C12.8954,30.0001 12,29.1047 12,28.0001V12.0001C12,10.8956 12.8954,10.0001 14,10.0001H21.85ZM26,17.0001V28.0001H14L14,12.0001H21V16.0001C21,16.5524 21.4476,17.0001 21.9998,17.0001H26Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M23.5,12.5H22V18C22,19.1046 22.8954,20 24,20H29.5V18.5H24C23.7239,18.5 23.5,18.2761 23.5,18V12.5Z"
android:fillColor="#1BA0EB"/>
<path
android:pathData="M14.75,14C14.75,13.3096 15.3096,12.75 16,12.75H23.5858C23.6521,12.75 23.7157,12.7763 23.7626,12.8232L24.2894,12.2964L23.7626,12.8232L29.1768,18.2374C29.2237,18.2843 29.25,18.3479 29.25,18.4142V30C29.25,30.6904 28.6904,31.25 28,31.25H16C15.3096,31.25 14.75,30.6904 14.75,30V14Z"
android:strokeWidth="1.5"
android:fillColor="#00000000"
android:strokeColor="#1BA0EB"/>
</vector>

View file

@ -1,22 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M28,12.0001H12V28.0001H28V12.0001ZM12,10.0001C10.8954,10.0001 10,10.8956 10,12.0001V28.0001C10,29.1047 10.8954,30.0001 12,30.0001H28C29.1046,30.0001 30,29.1047 30,28.0001V12.0001C30,10.8956 29.1046,10.0001 28,10.0001H12Z" />
<path
android:fillColor="#1BA0EB"
android:pathData="M23,18.0001C24.1046,18.0001 25,17.1047 25,16.0001C25,14.8956 24.1046,14.0001 23,14.0001C21.8954,14.0001 21,14.8956 21,16.0001C21,17.1047 21.8954,18.0001 23,18.0001Z" />
<path
android:fillColor="#1BA0EB"
android:pathData="M13.5,26.0001L18.4805,18.0001L23.5,26.0001H13.5Z" />
<path
android:fillColor="#1BA0EB"
android:pathData="M20.5,26.0001L23.5,21.0001L26.5,26.0001H20.5Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M29,13.5H15C14.1716,13.5 13.5,14.1716 13.5,15V29C13.5,29.8284 14.1716,30.5 15,30.5H29C29.8284,30.5 30.5,29.8284 30.5,29V15C30.5,14.1716 29.8284,13.5 29,13.5ZM15,12C13.3431,12 12,13.3431 12,15V29C12,30.6569 13.3431,32 15,32H29C30.6569,32 32,30.6569 32,29V15C32,13.3431 30.6569,12 29,12H15Z"
android:fillColor="#1BA0EB"
android:fillType="evenOdd"/>
<path
android:pathData="M26,20C27.1046,20 28,19.1046 28,18C28,16.8954 27.1046,16 26,16C24.8954,16 24,16.8954 24,18C24,19.1046 24.8954,20 26,20Z"
android:fillColor="#1BA0EB"/>
<path
android:pathData="M22,28L25,23L28,28H22Z"
android:fillColor="#1BA0EB"/>
<path
android:pathData="M16,28L21,19.6667L26,28H16Z"
android:fillColor="#1BA0EB"/>
</vector>

View file

@ -1,13 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#FEF3C5"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#E89D00"
android:fillType="evenOdd"
android:pathData="M26.002,12.0001H14.002V14.0001H19.002V28.0001H21.002V14.0001H26.002V12.0001Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#FFEE94"/>
<path
android:pathData="M21.25,13H22.75V31H21.25V13Z"
android:fillColor="#E88B00"/>
<path
android:pathData="M14.5,14.5V13H29.5V14.5L14.5,14.5Z"
android:fillColor="#E88B00"/>
</vector>

View file

@ -1,24 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#F1CAFB"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#A252E0"
android:pathData="M14.082,13.0001H26.0508V15.0001H14.082V13.0001Z" />
<path
android:fillColor="#A252E0"
android:pathData="M14.082,25.0001H26.0508V27.0001H14.082V25.0001Z" />
<path
android:fillColor="#A252E0"
android:pathData="M21.082,20.0001C21.082,20.5524 20.6343,21.0001 20.082,21.0001C19.5297,21.0001 19.082,20.5524 19.082,20.0001C19.082,19.4478 19.5297,19.0001 20.082,19.0001C20.6343,19.0001 21.082,19.4478 21.082,20.0001Z" />
<path
android:fillColor="#A252E0"
android:pathData="M13.082,20.0001C13.082,20.5524 12.6343,21.0001 12.082,21.0001C11.5297,21.0001 11.082,20.5524 11.082,20.0001C11.082,19.4478 11.5297,19.0001 12.082,19.0001C12.6343,19.0001 13.082,19.4478 13.082,20.0001Z" />
<path
android:fillColor="#A252E0"
android:pathData="M29.082,20.0001C29.082,20.5524 28.6343,21.0001 28.082,21.0001C27.5297,21.0001 27.082,20.5524 27.082,20.0001C27.082,19.4478 27.5297,19.0001 28.082,19.0001C28.6343,19.0001 29.082,19.4478 29.082,20.0001Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#F1CAFB"/>
<path
android:pathData="M16,14.25h12v1.5h-12z"
android:fillColor="#A252E0"/>
<path
android:pathData="M22,21L22,21A1,1 0,0 1,23 22L23,22A1,1 0,0 1,22 23L22,23A1,1 0,0 1,21 22L21,22A1,1 0,0 1,22 21z"
android:fillColor="#A252E0"/>
<path
android:pathData="M32,21L32,21A1,1 0,0 1,33 22L33,22A1,1 0,0 1,32 23L32,23A1,1 0,0 1,31 22L31,22A1,1 0,0 1,32 21z"
android:fillColor="#A252E0"/>
<path
android:pathData="M12,21L12,21A1,1 0,0 1,13 22L13,22A1,1 0,0 1,12 23L12,23A1,1 0,0 1,11 22L11,22A1,1 0,0 1,12 21z"
android:fillColor="#A252E0"/>
<path
android:pathData="M16,28.25h12v1.5h-12z"
android:fillColor="#A252E0"/>
</vector>

View file

@ -1,24 +1,26 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#B8F1A4"
android:pathData="M8,0L32,0A8,8 0,0 1,40 8L40,32A8,8 0,0 1,32 40L8,40A8,8 0,0 1,0 32L0,8A8,8 0,0 1,8 0z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0715,12.9741h11.9688v2h-11.9688z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0715,18.9741h9v2h-9z" />
<path
android:fillColor="#2BA930"
android:pathData="M18.0715,24.9741h12v2h-12z" />
<path
android:fillColor="#2BA930"
android:pathData="M13.0376,13.9627L11.5362,12.4633C11.2627,12.1901 11.2624,11.7469 11.5356,11.4733C11.8088,11.1998 12.252,11.1995 12.5255,11.4727L15.0175,13.9614L12.5255,16.4566C12.2523,16.7302 11.8091,16.7305 11.5356,16.4573C11.262,16.1841 11.2617,15.7409 11.5349,15.4673L13.0376,13.9627Z" />
<path
android:fillColor="#2BA930"
android:pathData="M13.0376,25.9627L11.5362,24.4633C11.2627,24.1901 11.2624,23.7469 11.5356,23.4733C11.8088,23.1998 12.252,23.1995 12.5255,23.4727L15.0175,25.9614L12.5255,28.4566C12.2523,28.7302 11.8091,28.7305 11.5356,28.4573C11.262,28.1841 11.2617,27.7409 11.5349,27.4673L13.0376,25.9627Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#B8F1A4"/>
<path
android:pathData="M20,21.25h8v1.5h-8z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,28.25h12v1.5h-12z"
android:fillColor="#2BA930"/>
<path
android:pathData="M20,14.25h12v1.5h-12z"
android:fillColor="#2BA930"/>
<path
android:pathData="M12.6464,12.1464C12.8417,11.9512 13.1583,11.9512 13.3536,12.1464L16.2071,15L13.3536,17.8536C13.1583,18.0488 12.8417,18.0488 12.6464,17.8536C12.4512,17.6583 12.4512,17.3417 12.6464,17.1464L14.7929,15L12.6464,12.8536C12.4512,12.6583 12.4512,12.3417 12.6464,12.1464Z"
android:fillColor="#2BA930"
android:fillType="evenOdd"/>
<path
android:pathData="M12.6464,26.1464C12.8417,25.9512 13.1583,25.9512 13.3536,26.1464L16.2071,29L13.3536,31.8536C13.1583,32.0488 12.8417,32.0488 12.6464,31.8536C12.4512,31.6583 12.4512,31.3417 12.6464,31.1464L14.7929,29L12.6464,26.8536C12.4512,26.6583 12.4512,26.3417 12.6464,26.1464Z"
android:fillColor="#2BA930"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,16 +1,16 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="40dp"
android:viewportWidth="40"
android:viewportHeight="40">
<path
android:fillColor="#A8E5FF"
android:pathData="M8,0.0001L32,0.0001A8,8 0,0 1,40 8.0001L40,32.0001A8,8 0,0 1,32 40.0001L8,40.0001A8,8 0,0 1,0 32.0001L0,8.0001A8,8 0,0 1,8 0.0001z" />
<path
android:fillColor="#1BA0EB"
android:fillType="evenOdd"
android:pathData="M28,12.0001H12V28.0001H28V12.0001ZM12,10.0001C10.8954,10.0001 10,10.8956 10,12.0001V28.0001C10,29.1047 10.8954,30.0001 12,30.0001H28C29.1046,30.0001 30,29.1047 30,28.0001V12.0001C30,10.8956 29.1046,10.0001 28,10.0001H12Z" />
<path
android:fillColor="#1BA0EB"
android:pathData="M24.9688,19.9697L17.5469,15.6847V24.2547L24.9688,19.9697Z" />
android:width="44dp"
android:height="44dp"
android:viewportWidth="44"
android:viewportHeight="44">
<path
android:pathData="M10,0L34,0A10,10 0,0 1,44 10L44,34A10,10 0,0 1,34 44L10,44A10,10 0,0 1,0 34L0,10A10,10 0,0 1,10 0z"
android:fillColor="#A8E5FF"/>
<path
android:pathData="M26.9996,21.9998L19.5039,17.5V26.5L26.9996,21.9998Z"
android:fillColor="#1BA0EB"/>
<path
android:pathData="M29,13.5H15C14.1716,13.5 13.5,14.1716 13.5,15V29C13.5,29.8284 14.1716,30.5 15,30.5H29C29.8284,30.5 30.5,29.8284 30.5,29V15C30.5,14.1716 29.8284,13.5 29,13.5ZM15,12C13.3431,12 12,13.3431 12,15V29C12,30.6569 13.3431,32 15,32H29C30.6569,32 32,30.6569 32,29V15C32,13.3431 30.6569,12 29,12H15Z"
android:fillColor="#1BA0EB"
android:fillType="evenOdd"/>
</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="M15.5577,3.4174C16.1435,4.0031 16.1435,4.9529 15.5577,5.5387L9.1184,11.978L15.5577,18.4174C16.1435,19.0032 16.1435,19.9529 15.5577,20.5387C14.9719,21.1245 14.0222,21.1245 13.4364,20.5387L5.0879,12.1902C4.9707,12.073 4.9707,11.8831 5.0879,11.7659L13.4364,3.4174C14.0222,2.8316 14.9719,2.8316 15.5577,3.4174Z"
android:pathData="M15.7071,3.4179C16.0977,3.8084 16.0977,4.4416 15.7071,4.8321L8.4142,12.125L15.7071,19.4179C16.0977,19.8084 16.0977,20.4416 15.7071,20.8321C15.3166,21.2226 14.6834,21.2226 14.2929,20.8321L5.5858,12.125L14.2929,3.4179C14.6834,3.0274 15.3166,3.0274 15.7071,3.4179Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -1,10 +1,10 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:width="25dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:fillColor="#DFDDD0"
android:fillType="evenOdd"
android:pathData="M12,18L20,22V4C20,2.8954 19.1046,2 18,2H6C4.8954,2 4,2.8954 4,4V22L12,18ZM6,18.7639L12,15.7639L18,18.7639V4H6V18.7639Z" />
<path
android:pathData="M12.5,17.9995L20.5,21.9995V4.9995C20.5,3.3427 19.1569,1.9995 17.5,1.9995H7.5C5.8432,1.9995 4.5,3.3427 4.5,4.9995V21.9995L12.5,17.9995ZM6,19.5725L12.5,16.3225L19,19.5725V4.9995C19,4.1711 18.3284,3.4995 17.5,3.4995H7.5C6.6716,3.4995 6,4.1711 6,4.9995V19.5725Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,15 +3,15 @@
android:height="28dp"
android:viewportWidth="28"
android:viewportHeight="28">
<path
android:fillColor="#F3F2EC"
android:pathData="M14,14m-14,0a14,14 0,1 1,28 0a14,14 0,1 1,-28 0" />
<path
android:fillColor="#6C6A5F"
android:fillType="evenOdd"
android:pathData="M8.7929,8.7929C9.1834,8.4024 9.8166,8.4024 10.2071,8.7929L19.2071,17.7929C19.5976,18.1834 19.5976,18.8166 19.2071,19.2071C18.8166,19.5976 18.1834,19.5976 17.7929,19.2071L8.7929,10.2071C8.4024,9.8166 8.4024,9.1834 8.7929,8.7929Z" />
<path
android:fillColor="#6C6A5F"
android:fillType="evenOdd"
android:pathData="M19.2071,8.7929C18.8166,8.4024 18.1834,8.4024 17.7929,8.7929L8.7929,17.7929C8.4024,18.1834 8.4024,18.8166 8.7929,19.2071C9.1834,19.5976 9.8166,19.5976 10.2071,19.2071L19.2071,10.2071C19.5976,9.8166 19.5976,9.1834 19.2071,8.7929Z" />
<path
android:pathData="M28,14C28,21.732 21.732,28 14,28C6.268,28 0,21.732 0,14C0,6.268 6.268,0 14,0C21.732,0 28,6.268 28,14Z"
android:fillColor="#EAE9E0"/>
<path
android:pathData="M8.7929,8.7929C9.1834,8.4024 9.8166,8.4024 10.2071,8.7929L19.2071,17.7929C19.5976,18.1834 19.5976,18.8166 19.2071,19.2071C18.8166,19.5976 18.1834,19.5976 17.7929,19.2071L8.7929,10.2071C8.4024,9.8166 8.4024,9.1834 8.7929,8.7929Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M8.7929,19.2071C8.4024,18.8166 8.4024,18.1834 8.7929,17.7929L17.7929,8.7929C18.1834,8.4024 18.8166,8.4024 19.2071,8.7929C19.5976,9.1834 19.5976,9.8166 19.2071,10.2071L10.2071,19.2071C9.8166,19.5976 9.1834,19.5976 8.7929,19.2071Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,10 +3,7 @@
android:height="24dp"
android:viewportWidth="25"
android:viewportHeight="24">
<group>
<clip-path android:pathData="M0.0029,0H24.0029V24H0.0029V0Z M 0,0"/>
<path
android:pathData="M16.953,8.6304C18.1246,7.4588 18.1246,5.5593 16.953,4.3878C15.7814,3.2162 13.8819,3.2162 12.7104,4.3878L5.6393,11.4588C3.6867,13.4114 3.6863,16.5769 5.6389,18.5295C7.5915,20.4821 10.7574,20.4821 12.71,18.5295L19.0739,12.1655L20.4881,13.5797L14.1241,19.9437C11.3905,22.6773 6.9584,22.6774 4.2247,19.9437C1.491,17.21 1.491,12.7779 4.2247,10.0442L11.2961,2.9735C13.2488,1.0209 16.4146,1.0209 18.3672,2.9736C20.3198,4.9262 20.3198,8.092 18.3672,10.0446L12.0033,16.4086C10.8317,17.5802 8.9322,17.5802 7.7606,16.4086C6.589,15.237 6.589,13.3375 7.7606,12.1659L13.4175,6.5091L14.8317,7.9233L9.1748,13.5802C8.7843,13.9707 8.7843,14.6038 9.1748,14.9944C9.5654,15.3849 10.1985,15.3849 10.5891,14.9944L16.953,8.6304Z"
android:fillColor="#DFDDD0"/>
</group>
<path
android:pathData="M18.0888,4.4075C16.9173,3.2359 15.0178,3.2359 13.8462,4.4075L5.8912,12.3624C4.0363,14.2174 4.0363,17.225 5.8912,19.08C7.7462,20.9349 10.7538,20.9349 12.6088,19.08L19.8566,11.8321L20.9173,12.8928L13.6694,20.1406C11.2286,22.5814 7.2714,22.5814 4.8306,20.1406C2.3898,17.6998 2.3898,13.7426 4.8306,11.3018L12.7855,3.3468C14.5429,1.5895 17.3921,1.5895 19.1495,3.3468C20.9069,5.1042 20.9069,7.9534 19.1495,9.7108L11.9017,16.9586C10.8277,18.0326 9.0865,18.0326 8.0126,16.9586C6.9386,15.8847 6.9386,14.1435 8.0126,13.0695L14.5533,6.5288L15.614,7.5895L9.0732,14.1302C8.5851,14.6184 8.5851,15.4098 9.0732,15.898C9.5614,16.3861 10.3528,16.3861 10.841,15.898L18.0888,8.6501C19.2604,7.4786 19.2604,5.5791 18.0888,4.4075Z"
android:fillColor="#ACA996"/>
</vector>

View file

@ -3,13 +3,13 @@
android:height="24dp"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:fillColor="#ACA996"
android:pathData="M6.0029,14.0323C7.1075,14.0323 8.0029,13.1369 8.0029,12.0323C8.0029,10.9278 7.1075,10.0323 6.0029,10.0323C4.8984,10.0323 4.0029,10.9278 4.0029,12.0323C4.0029,13.1369 4.8984,14.0323 6.0029,14.0323Z" />
<path
android:fillColor="#ACA996"
android:pathData="M12.0029,14.0323C13.1075,14.0323 14.0029,13.1369 14.0029,12.0323C14.0029,10.9278 13.1075,10.0323 12.0029,10.0323C10.8984,10.0323 10.0029,10.9278 10.0029,12.0323C10.0029,13.1369 10.8984,14.0323 12.0029,14.0323Z" />
<path
android:fillColor="#ACA996"
android:pathData="M18.0029,14.0323C19.1075,14.0323 20.0029,13.1369 20.0029,12.0323C20.0029,10.9278 19.1075,10.0323 18.0029,10.0323C16.8984,10.0323 16.0029,10.9278 16.0029,12.0323C16.0029,13.1369 16.8984,14.0323 18.0029,14.0323Z" />
<path
android:pathData="M6.7787,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
android:fillColor="#ACA996"/>
<path
android:pathData="M12.7787,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
android:fillColor="#ACA996"/>
<path
android:pathData="M18.7787,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"
android:fillColor="#ACA996"/>
</vector>

View file

@ -0,0 +1,19 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="25dp"
android:height="24dp"
android:viewportWidth="25"
android:viewportHeight="24">
<path
android:pathData="M19.5,3.5H5.5C4.6716,3.5 4,4.1716 4,5V19C4,19.8284 4.6716,20.5 5.5,20.5H19.5C20.3284,20.5 21,19.8284 21,19V5C21,4.1716 20.3284,3.5 19.5,3.5ZM5.5,2C3.8431,2 2.5,3.3431 2.5,5V19C2.5,20.6569 3.8431,22 5.5,22H19.5C21.1569,22 22.5,20.6569 22.5,19V5C22.5,3.3431 21.1569,2 19.5,2H5.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M16.5,10C17.6046,10 18.5,9.1046 18.5,8C18.5,6.8954 17.6046,6 16.5,6C15.3954,6 14.5,6.8954 14.5,8C14.5,9.1046 15.3954,10 16.5,10Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M12.5,18L15.5,13L18.5,18H12.5Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M6.5,18.0001L11.5,9.6667L16.5,18.0001H6.5Z"
android:fillColor="#ACA996"/>
</vector>

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="M15.7071,3.2929C16.0977,3.6834 16.0977,4.3166 15.7071,4.7071L8.4142,12L15.7071,19.2929C16.0977,19.6834 16.0977,20.3166 15.7071,20.7071C15.3166,21.0976 14.6834,21.0976 14.2929,20.7071L5.5858,12L14.2929,3.2929C14.6834,2.9024 15.3166,2.9024 15.7071,3.2929Z"
android:fillColor="#ffffff"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,11 +3,15 @@
android:height="24dp"
android:viewportWidth="25"
android:viewportHeight="24">
<group>
<clip-path
android:pathData="M0.5,0h24v24h-24z"/>
<path
android:fillColor="#DFDDD0"
android:fillType="evenOdd"
android:pathData="M20.0029,4H4.0029V20H20.0029V4ZM4.0029,2C2.8984,2 2.0029,2.8954 2.0029,4V20C2.0029,21.1046 2.8984,22 4.0029,22H20.0029C21.1075,22 22.0029,21.1046 22.0029,20V4C22.0029,2.8954 21.1075,2 20.0029,2H4.0029Z" />
android:pathData="M17.4996,11.9998L10.0039,7.5V16.5L17.4996,11.9998Z"
android:fillColor="#ACA996"/>
<path
android:fillColor="#DFDDD0"
android:pathData="M16.9717,11.9696L9.5498,7.6846V16.2546L16.9717,11.9696Z" />
android:pathData="M19.5,3.5H5.5C4.6716,3.5 4,4.1716 4,5V19C4,19.8284 4.6716,20.5 5.5,20.5H19.5C20.3284,20.5 21,19.8284 21,19V5C21,4.1716 20.3284,3.5 19.5,3.5ZM5.5,2C3.8431,2 2.5,3.3431 2.5,5V19C2.5,20.6569 3.8431,22 5.5,22H19.5C21.1569,22 22.5,20.6569 22.5,19V5C22.5,3.3431 21.1569,2 19.5,2H5.5Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</group>
</vector>

View file

@ -14,9 +14,9 @@
android:layout_marginStart="16dp"
android:fontFamily="@font/graphik_font"
android:gravity="center_vertical"
android:lineSpacingExtra="7sp"
android:textColor="#2C2B27"
android:textSize="17sp"
android:includeFontPadding="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/ivAction"
app:layout_constraintStart_toStartOf="parent"

View file

@ -23,6 +23,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
android:layout_marginTop="1dp"
app:layout_constraintBottom_toTopOf="@+id/subtitle"
app:layout_constraintStart_toEndOf="@+id/icon"
app:layout_constraintTop_toTopOf="@+id/icon"
@ -35,7 +36,6 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
app:layout_constraintBottom_toBottomOf="@+id/icon"
app:layout_constraintStart_toEndOf="@+id/icon"
app:layout_constraintTop_toBottomOf="@+id/title"
tools:text="Big section heading" />

View file

@ -59,6 +59,7 @@
android:layout_marginTop="3dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="3dp"
android:visibility="invisible"
android:contentDescription="@string/content_description_more_button"
android:src="@drawable/ic_block_more"
app:layout_constraintBottom_toBottomOf="parent"

View file

@ -50,6 +50,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -57,6 +57,7 @@
android:layout_marginBottom="3dp"
android:contentDescription="@string/content_description_more_button"
android:src="@drawable/ic_block_more"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />

View file

@ -55,6 +55,7 @@
android:layout_marginEnd="4dp"
android:layout_marginBottom="3dp"
android:src="@drawable/ic_block_more"
android:visibility="invisible"
android:contentDescription="@string/content_description_more_button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"

View file

@ -46,6 +46,7 @@
android:layout_marginTop="3dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="3dp"
android:visibility="invisible"
android:src="@drawable/ic_block_more"
android:contentDescription="@string/content_description_more_button"
app:layout_constraintBottom_toBottomOf="parent"

View file

@ -52,7 +52,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="visible"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -22,7 +22,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_file_light" />
app:srcCompat="@drawable/ic_picture" />
<TextView
android:id="@+id/editUrl"
@ -46,7 +46,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="visible"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -51,7 +51,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="visible"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -37,15 +37,14 @@
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="34sp"
android:layout_marginBottom="20dp"
android:hint="@string/hint_profile_title"
android:textColorHint="#ACA996"
android:layout_marginTop="11dp"
android:layout_marginBottom="13dp"
android:background="@null"
android:textColor="@color/black"
android:fontFamily="@font/graphik_semibold"
android:lineSpacingExtra="2sp"
android:layout_marginTop="15dp"
android:hint="@string/hint_profile_title"
android:textColor="@color/black"
android:textColorHint="#ACA996"
android:textSize="34sp"
tools:text="Title" />
</LinearLayout>

View file

@ -51,6 +51,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -50,6 +50,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginEnd="12dp"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_block_more" />

View file

@ -33,7 +33,7 @@
<TextView
android:id="@+id/tvTitle"
android:layout_width="0dp"
android:layout_height="22dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginEnd="16dp"
android:ellipsize="end"
@ -46,12 +46,13 @@
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/iconContainer"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed"
tools:text="Is your feature request related to a problem? Please describe" />
<TextView
android:id="@+id/tvSubtitle"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginEnd="16dp"
android:ellipsize="end"

View file

@ -30,7 +30,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:padding="@dimen/dp_16"
android:text="Cancel"
android:text="@string/cancel"
android:textColor="#2C2B27"
android:textSize="15sp"
app:layout_constraintEnd_toEndOf="parent"
@ -44,20 +44,18 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/searchView" />
app:layout_constraintTop_toBottomOf="@+id/searchWidget" />
<SearchView
android:id="@+id/searchView"
<include
android:id="@+id/searchWidget"
android:layout_width="0dp"
android:layout_height="36dp"
android:layout_marginStart="16dp"
layout="@layout/widget_search_view"
android:layout_marginStart="@dimen/dp_16"
android:layout_marginEnd="4dp"
android:background="@drawable/bg_page_nav_filter"
android:closeIcon="@drawable/ic_search_delete"
android:searchIcon="@drawable/ic_search"
app:layout_constraintBottom_toBottomOf="@+id/icSorting"
app:layout_constraintEnd_toStartOf="@+id/icSorting"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/icSorting" />
app:layout_constraintTop_toTopOf="@+id/icSorting"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -17,7 +17,7 @@
<TextView
android:id="@+id/blockStyle"
style="@style/StyleToolbarTabStyle"
android:text="@string/style"
android:text="@string/text"
app:layout_constraintBottom_toBottomOf="@+id/close"
app:layout_constraintEnd_toStartOf="@+id/blockColor"
app:layout_constraintHorizontal_bias="0.5"

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:background="@drawable/bg_page_nav_filter">
<ImageView
android:id="@+id/searchIcon"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="@drawable/ic_search"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/filterInputField"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginStart="4dp"
android:layout_marginEnd="4dp"
android:background="@null"
android:fontFamily="@font/inter_regular"
android:hint="@string/filter"
android:inputType="textNoSuggestions"
android:maxLines="1"
android:singleLine="true"
android:textSize="17sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/clearSearchText"
app:layout_constraintStart_toEndOf="@+id/searchIcon"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/clearSearchText"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
android:layout_marginEnd="8dp"
android:src="@drawable/ic_search_delete"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center_vertical"
android:layout_marginEnd="8dp"
android:theme="@style/GreyProgressBar"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -24,6 +24,7 @@
<color name="anytype_background_ice">#D6EFFD</color>
<color name="anytype_background_teal">#D6F5F3</color>
<color name="anytype_background_green">#E3F7D0</color>
<color name="anytype_shadow_main">#8C000000</color>
<color name="debug">#F44336</color>
<color name="orange">#FFBB2C</color>

View file

@ -43,6 +43,8 @@
<dimen name="default_toolbar_action_item_spacing">8dp</dimen>
<dimen name="default_toolbar_action_item_spacing_first">16dp</dimen>
<dimen name="default_toolbar_action_item_spacing_last">16dp</dimen>
<dimen name="default_toolbar_action_item_divider_height">1dp</dimen>
<dimen name="default_toolbar_action_item_divider_extended_height">8dp</dimen>
<dimen name="default_toolbar_text_color_item_height">48dp</dimen>
<dimen name="default_toolbar_text_color_item_width">64dp</dimen>

View file

@ -178,6 +178,7 @@
<string name="menu_item_cut">Cut</string>
<string name="menu_item_paste">Paste</string>
<string name="style">Style</string>
<string name="text">Text</string>
<string name="color">Color</string>
<string name="background">Background</string>
<string name="content_description_close_button">Close button</string>

View file

@ -287,10 +287,9 @@
<item name="android:textColor">@color/selector_style_toolbar_tab_text_color</item>
<item name="android:fontFamily">@font/graphik_medium</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_height">28dp</item>
<item name="android:gravity">center_vertical</item>
<item name="android:paddingStart">16dp</item>
<item name="android:paddingTop">3dp</item>
<item name="android:paddingBottom">4dp</item>
<item name="android:paddingEnd">16dp</item>
</style>
@ -357,4 +356,8 @@
<item name="android:textSize">9sp</item>
</style>
<style name="GreyProgressBar" parent="ThemeOverlay.AppCompat.Light">
<item name="colorAccent">#ACA996</item>
</style>
</resources>

View file

@ -3,18 +3,18 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#ACA996"
android:fillType="evenOdd"
android:pathData="M11.999,21C16.9696,21 20.999,16.9706 20.999,12C20.999,7.0294 16.9696,3 11.999,3C7.0285,3 2.999,7.0294 2.999,12C2.999,16.9706 7.0285,21 11.999,21ZM11.999,23C18.0742,23 22.999,18.0751 22.999,12C22.999,5.9249 18.0742,1 11.999,1C5.9239,1 0.999,5.9249 0.999,12C0.999,18.0751 5.9239,23 11.999,23Z" />
<path
android:fillColor="#ACA996"
android:pathData="M16.999,9.5C16.999,10.3284 16.3275,11 15.499,11C14.6706,11 13.999,10.3284 13.999,9.5C13.999,8.6716 14.6706,8 15.499,8C16.3275,8 16.999,8.6716 16.999,9.5Z" />
<path
android:fillColor="#ACA996"
android:pathData="M9.999,9.5C9.999,10.3284 9.3274,11 8.499,11C7.6706,11 6.999,10.3284 6.999,9.5C6.999,8.6716 7.6706,8 8.499,8C9.3274,8 9.999,8.6716 9.999,9.5Z" />
<path
android:fillColor="#ACA996"
android:fillType="evenOdd"
android:pathData="M5.2889,14C6.1495,16.8915 8.828,19 11.9991,19C15.1701,19 17.8486,16.8915 18.7092,14H5.2889Z" />
<path
android:pathData="M10.5,10C10.5,10.8284 9.8284,11.5 9,11.5C8.1716,11.5 7.5,10.8284 7.5,10C7.5,9.1716 8.1716,8.5 9,8.5C9.8284,8.5 10.5,9.1716 10.5,10Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M16.5,10C16.5,10.8284 15.8284,11.5 15,11.5C14.1716,11.5 13.5,10.8284 13.5,10C13.5,9.1716 14.1716,8.5 15,8.5C15.8284,8.5 16.5,9.1716 16.5,10Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M12,20.5C16.6944,20.5 20.5,16.6944 20.5,12C20.5,7.3056 16.6944,3.5 12,3.5C7.3056,3.5 3.5,7.3056 3.5,12C3.5,16.6944 7.3056,20.5 12,20.5ZM12,22C17.5228,22 22,17.5228 22,12C22,6.4771 17.5228,2 12,2C6.4771,2 2,6.4771 2,12C2,17.5228 6.4771,22 12,22Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
<path
android:pathData="M17.6586,14H6.3414C7.1651,16.3304 9.3876,18 12,18C14.6125,18 16.8349,16.3304 17.6586,14Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,24 +3,23 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#00000000"
android:pathData="M4.998,3L18.9981,3A2,2 0,0 1,20.9981 5L20.9981,19A2,2 0,0 1,18.9981 21L4.998,21A2,2 0,0 1,2.998 19L2.998,5A2,2 0,0 1,4.998 3z"
android:strokeWidth="2"
android:strokeColor="#ACA996" />
<path
android:fillColor="#ACA996"
android:pathData="M7.9981,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0" />
<path
android:fillColor="#ACA996"
android:pathData="M15.998,8m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0" />
<path
android:fillColor="#ACA996"
android:pathData="M7.9981,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0" />
<path
android:fillColor="#ACA996"
android:pathData="M15.998,16m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0" />
<path
android:fillColor="#ACA996"
android:pathData="M11.998,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0" />
<path
android:pathData="M9.5,8.0002C9.5,8.8287 8.8284,9.5002 8,9.5002C7.1716,9.5002 6.5,8.8287 6.5,8.0002C6.5,7.1718 7.1716,6.5002 8,6.5002C8.8284,6.5002 9.5,7.1718 9.5,8.0002Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M17.5,8.0002C17.5,8.8287 16.8284,9.5002 16,9.5002C15.1716,9.5002 14.5,8.8287 14.5,8.0002C14.5,7.1718 15.1716,6.5002 16,6.5002C16.8284,6.5002 17.5,7.1718 17.5,8.0002Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M9.5,16.0002C9.5,16.8287 8.8284,17.5002 8,17.5002C7.1716,17.5002 6.5,16.8287 6.5,16.0002C6.5,15.1718 7.1716,14.5002 8,14.5002C8.8284,14.5002 9.5,15.1718 9.5,16.0002Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M17.5,16.0002C17.5,16.8287 16.8284,17.5002 16,17.5002C15.1716,17.5002 14.5,16.8287 14.5,16.0002C14.5,15.1718 15.1716,14.5002 16,14.5002C16.8284,14.5002 17.5,15.1718 17.5,16.0002Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M13.5,12.0002C13.5,12.8287 12.8284,13.5002 12,13.5002C11.1716,13.5002 10.5,12.8287 10.5,12.0002C10.5,11.1718 11.1716,10.5002 12,10.5002C12.8284,10.5002 13.5,11.1718 13.5,12.0002Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M17,4.5002H7C5.6193,4.5002 4.5,5.6195 4.5,7.0002V17.0002C4.5,18.381 5.6193,19.5002 7,19.5002H17C18.3807,19.5002 19.5,18.381 19.5,17.0002V7.0002C19.5,5.6195 18.3807,4.5002 17,4.5002ZM7,3.0002C4.7909,3.0002 3,4.7911 3,7.0002V17.0002C3,19.2094 4.7909,21.0002 7,21.0002H17C19.2091,21.0002 21,19.2094 21,17.0002V7.0002C21,4.7911 19.2091,3.0002 17,3.0002H7Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>

View file

@ -3,14 +3,14 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#ACA996"
android:pathData="M10.999,3C10.999,2.4477 11.4467,2 11.999,2C12.5513,2 12.999,2.4477 12.999,3V17C12.999,17.5523 12.5513,18 11.999,18C11.4467,18 10.999,17.5523 10.999,17V3Z" />
<path
android:fillColor="#ACA996"
android:pathData="M4.999,22C4.4467,22 3.999,21.5523 3.999,21C3.999,20.4477 4.4467,20 4.999,20H18.999C19.5513,20 19.999,20.4477 19.999,21C19.999,21.5523 19.5513,22 18.999,22H4.999Z" />
<path
android:fillColor="#ACA996"
android:fillType="evenOdd"
android:pathData="M11.999,1.5858L19.7061,9.2929C20.0967,9.6834 20.0967,10.3166 19.7061,10.7071C19.3156,11.0977 18.6824,11.0977 18.2919,10.7071L11.999,4.4142L5.7061,10.7071C5.3156,11.0977 4.6824,11.0977 4.2919,10.7071C3.9014,10.3166 3.9014,9.6834 4.2919,9.2929L11.999,1.5858Z" />
<path
android:pathData="M5,19.75C5,19.3358 5.3358,19 5.75,19H18.25C18.6642,19 19,19.3358 19,19.75C19,20.1642 18.6642,20.5 18.25,20.5H5.75C5.3358,20.5 5,20.1642 5,19.75Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M12,17C11.5858,17 11.25,16.6642 11.25,16.25V4.75C11.25,4.3358 11.5858,4 12,4C12.4142,4 12.75,4.3358 12.75,4.75V16.25C12.75,16.6642 12.4142,17 12,17Z"
android:fillColor="#ACA996"/>
<path
android:pathData="M12,2.9395L18.5303,9.4698C18.8232,9.7627 18.8232,10.2375 18.5303,10.5304C18.2374,10.8233 17.7626,10.8233 17.4697,10.5304L12,5.0608L6.5303,10.5304C6.2374,10.8233 5.7626,10.8233 5.4697,10.5304C5.1768,10.2375 5.1768,9.7627 5.4697,9.4698L12,2.9395Z"
android:fillColor="#ACA996"
android:fillType="evenOdd"/>
</vector>