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

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="24dp"
    android:layout_marginTop="2dp"
    android:background="@drawable/account_row_background_rounded_all"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:padding="16dp"
    android:visibility="gone">

  <ImageView
      android:id="@+id/row_icon"
      android:layout_width="40dp"
      android:layout_height="40dp"
      android:importantForAccessibility="no" />

  <TextView
      android:id="@+id/row_text"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:layout_marginStart="16dp"
      android:textAppearance="@style/TextAppearance.TextMediumThick.Primary" />
</LinearLayout>