1 2export const easeOutCirc = (x: number) => Math.sqrt(1 - Math.pow(x - 1, 2));
1 2
export const easeOutCirc = (x: number) => Math.sqrt(1 - Math.pow(x - 1, 2));