<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:background="?android:attr/selectableItemBackground"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:paddingTop="@dimen/app_menu_item_space"
    android:paddingBottom="@dimen/app_menu_item_space">

    <com.google.android.material.card.MaterialCardView
        android:id="@+id/cv_icon"
        style="@style/Widget.Material3.CardView.Filled"
        android:layout_width="@dimen/app_menu_item_size"
        android:layout_height="@dimen/app_menu_item_size"
        app:cardCornerRadius="@dimen/app_menu_corner_radius"
        app:contentPadding="@dimen/dp10">

        <ImageView
            android:id="@+id/icon"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop" />
    </com.google.android.material.card.MaterialCardView>


    <TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/dp6"
        android:gravity="center"
        android:textSize="@dimen/base_tertiaryTextSize" />
</LinearLayout>