blob: ce523210b95536f0a0890be7d255b182391cc947 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { cubicOut } from 'svelte/easing';
import { tweened } from 'svelte/motion';
const tooltipPosition = tweened(
{ x: 0, y: 0 },
{
duration: 200 * 1.75,
easing: cubicOut
}
);
export default tooltipPosition;
|