1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

fix(FloatingBubble): floatingBubbleBackground type is optional ()

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

@ -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;
}; };