aboutsummaryrefslogtreecommitdiff
path: root/src/stores/tooltipPosition.ts
blob: 06b38fe1ff1dabfd70a38502c49a04a79244282c (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;