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

35 lines
1.1 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.button.MaterialButton;
public final class WidgetCaptchaBottomSheetBinding implements ViewBinding {
@NonNull
public final NestedScrollView a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1765c;
@NonNull
public final TextView d;
public WidgetCaptchaBottomSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull ImageView imageView) {
this.a = nestedScrollView;
this.b = textView;
this.f1765c = materialButton;
this.d = textView2;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}