package com.discord.databinding; import android.view.View; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.material.button.MaterialButton; import com.google.android.material.card.MaterialCardView; public final class ViewGiftOutboundPromoListItemBinding implements ViewBinding { @NonNull public final MaterialCardView a; @NonNull public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f1648c; @NonNull public final SimpleDraweeView d; @NonNull public final TextView e; @NonNull public final TextView f; public ViewGiftOutboundPromoListItemBinding(@NonNull MaterialCardView materialCardView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = materialCardView; this.b = materialButton; this.f1648c = textView; this.d = simpleDraweeView; this.e = textView2; this.f = textView3; } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }