package com.discord.databinding; import android.view.View; import android.widget.RelativeLayout; import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; public final class WidgetChatListAdapterItemMessageHeaderBinding implements ViewBinding { @NonNull public final RelativeLayout a; @NonNull public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final View f1744c; @NonNull public final TextView d; @NonNull public final Space e; public WidgetChatListAdapterItemMessageHeaderBinding(@NonNull RelativeLayout relativeLayout, @NonNull TextView textView, @NonNull View view, @NonNull TextView textView2, @NonNull Space space) { this.a = relativeLayout; this.b = textView; this.f1744c = view; this.d = textView2; this.e = space; } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }