<?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.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_selected="true">
    <inset
        android:insetTop="4dp"
        android:insetBottom="4dp">
      <shape android:shape="rectangle">
        <solid android:color="@android:color/transparent" />

        <!-- Color is overridden at runtime. -->
        <stroke
            android:width="2dp"
            android:color="@android:color/white" />
    <!--
    The activation chip visually has a height of 32dp, so the base radius
    should be 16dp. Then +3dp to account for the fact that we're 3dp wider on
    either side.
    -->
    <corners android:radius="19dp" />
  </shape>
</inset>
</item>

<item>
<shape android:shape="rectangle">
  <solid android:color="@android:color/transparent" />
</shape>
</item>
</selector>
