fix(FloatingBubble): floatingBubbleBackground type is optional (#12029)

This commit is contained in:
yanbowen
2023-06-25 17:34:43 +08:00
committed by GitHub
parent edc1f5e7e7
commit fce31b5ef1

View File

@@ -2,7 +2,7 @@ export type FloatingBubbleThemeVars = {
floatingBubbleSize?: string;
floatingBubbleInitialGap?: string;
floatingBubbleIconSize?: string;
floatingBubbleBackground: string;
floatingBubbleBackground?: string;
floatingBubbleColor?: string;
floatingBubbleZIndex?: number | string;
};