import { TEasingFunction } from '../types'; export const EaseInQuad: TEasingFunction = (x) => x ** 2;