1 | export type FloatingBubbleThemeVars = {
|
2 | floatingBubbleSize?: string;
|
3 | floatingBubbleInitialGap?: string;
|
4 | floatingBubbleIconSize?: string;
|
5 | floatingBubbleBackground?: string;
|
6 | floatingBubbleColor?: string;
|
7 | floatingBubbleZIndex?: number | string;
|
8 | };
|
9 | export type FloatingBubbleAxis = 'x' | 'y' | 'xy' | 'lock';
|
10 | export type FloatingBubbleMagnetic = 'x' | 'y';
|
11 | export type FloatingBubbleOffset = {
|
12 | x: number;
|
13 | y: number;
|
14 | };
|
15 | export type FloatingBubbleBoundary = {
|
16 | top: number;
|
17 | right: number;
|
18 | bottom: number;
|
19 | left: number;
|
20 | };
|