Rabbit-R1/android (non root)/java/sources/com/airbnb/lottie/model/animatable/AnimatableTextProperties.java
2024-05-21 17:08:36 -04:00

16 lines
712 B
Java

package com.airbnb.lottie.model.animatable;
/* loaded from: classes2.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;
}
}