diff --git a/src/components/FAB/FABGroup.tsx b/src/components/FAB/FABGroup.tsx index af1e85c4cb..b778497c2d 100644 --- a/src/components/FAB/FABGroup.tsx +++ b/src/components/FAB/FABGroup.tsx @@ -35,6 +35,7 @@ export type Props = { * - `accessibilityHint`: accessibility hint for the action * - `style`: pass additional styles for the fab item, for example, `backgroundColor` * - `containerStyle`: pass additional styles for the fab item label container, for example, `backgroundColor` @supported Available in 5.x + * - `wrapperStyle`: pass additional styles for the wrapper of the action item. * - `labelStyle`: pass additional styles for the fab item label, for example, `fontSize` * - `labelMaxFontSizeMultiplier`: specifies the largest possible scale a title font can reach. * - `onPress`: callback that is called when `FAB` is pressed (required) @@ -53,6 +54,7 @@ export type Props = { accessibilityHint?: string; style?: Animated.WithAnimatedValue>; containerStyle?: Animated.WithAnimatedValue>; + wrapperStyle?: StyleProp; labelStyle?: StyleProp; labelMaxFontSizeMultiplier?: number; onPress: (e: GestureResponderEvent) => void; @@ -376,6 +378,7 @@ const FABGroup = ({