8 lines
297 B
Kotlin
8 lines
297 B
Kotlin
package chat.revolt.material
|
|
|
|
import androidx.compose.animation.core.CubicBezierEasing
|
|
|
|
object EasingTokens {
|
|
// https://m3.material.io/styles/motion/easing-and-duration/tokens-specs#ed7ab8eb-9b9a-40a3-806f-a4485558f3df
|
|
val EmphasizedDecelerate = CubicBezierEasing(0.05f, 0.7f, 0.1f, 1f)
|
|
} |