<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2026 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Transparent base to fix size to 40dp width -->
    <item>
        <shape>
            <size
                android:width="@dimen/glic_menu_end_icon_width"
                android:height="24dp" />
            <solid android:color="@android:color/transparent" />
        </shape>
    </item>
    <!-- LINT.IfChange -->
    <!-- Align the 24dp move icon's horizontal center precisely with the center of
         the dirty dot in glic_menu_dot.xml (which sits at 28dp from the start).
         Start margin 16dp = 28dp (center of dot) - 12dp (half icon width). -->
    <item
        android:drawable="@drawable/ic_move_item_24dp"
        android:start="16dp"
        android:end="0dp" />
    <!-- LINT.ThenChange(//chrome/browser/glic/android/java/res/values/dimens.xml) -->
</layer-list>
