discord-jadx/app/src/main/java/com/discord/databinding/WidgetStickerPackStoreSheet...

39 lines
1.3 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.RelativeLayout;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import com.discord.views.LoadingButton;
import com.facebook.drawee.view.SimpleDraweeView;
public final class WidgetStickerPackStoreSheetBinding implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final RelativeLayout b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final RecyclerView f1966c;
@NonNull
public final SimpleDraweeView d;
@NonNull
public final LoadingButton e;
public WidgetStickerPackStoreSheetBinding(@NonNull RelativeLayout relativeLayout, @NonNull FrameLayout frameLayout, @NonNull RelativeLayout relativeLayout2, @NonNull RecyclerView recyclerView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull LoadingButton loadingButton) {
this.a = relativeLayout;
this.b = relativeLayout2;
this.f1966c = recyclerView;
this.d = simpleDraweeView;
this.e = loadingButton;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}