26 lines
493 B
JavaScript
26 lines
493 B
JavaScript
'use client'
|
|
|
|
// src/tooltip.transition.tsx
|
|
var scale = {
|
|
exit: {
|
|
scale: 0.85,
|
|
opacity: 0,
|
|
transition: {
|
|
opacity: { duration: 0.15, easings: "easeInOut" },
|
|
scale: { duration: 0.2, easings: "easeInOut" }
|
|
}
|
|
},
|
|
enter: {
|
|
scale: 1,
|
|
opacity: 1,
|
|
transition: {
|
|
opacity: { easings: "easeOut", duration: 0.2 },
|
|
scale: { duration: 0.2, ease: [0.175, 0.885, 0.4, 1.1] }
|
|
}
|
|
}
|
|
};
|
|
|
|
export {
|
|
scale
|
|
};
|
|
//# sourceMappingURL=chunk-XRZH7COS.mjs.map
|