what-the-bank/sources/com/airbnb/lottie/model/animatable/AnimatableTextProperties.java

17 lines
711 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.model.animatable;
/* loaded from: classes.dex */
public class AnimatableTextProperties {
public final AnimatableColorValue color;
public final AnimatableColorValue stroke;
public final AnimatableFloatValue strokeWidth;
public final AnimatableFloatValue tracking;
public AnimatableTextProperties(AnimatableColorValue animatableColorValue, AnimatableColorValue animatableColorValue2, AnimatableFloatValue animatableFloatValue, AnimatableFloatValue animatableFloatValue2) {
this.color = animatableColorValue;
this.stroke = animatableColorValue2;
this.strokeWidth = animatableFloatValue;
this.tracking = animatableFloatValue2;
}
}