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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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