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