From 602612915c400b1d6e5ad9163b61231805f82fa4 Mon Sep 17 00:00:00 2001 From: lukewalczak Date: Mon, 21 Mar 2022 20:20:43 +0100 Subject: [PATCH] refactor: add elevated prop to Appbar --- src/components/Appbar/AppbarContent.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/components/Appbar/AppbarContent.tsx b/src/components/Appbar/AppbarContent.tsx index 98671ee333..8c8597bc40 100644 --- a/src/components/Appbar/AppbarContent.tsx +++ b/src/components/Appbar/AppbarContent.tsx @@ -50,13 +50,7 @@ type Props = $RemoveChildren & { */ onPress?: () => void; /** - * @supported Available in v3.x with theme version 3 - * - * Mode of the Appbar. - * - `small` - Appbar with default height (56). - * - `medium` - Appbar with medium height (112). - * - `large` - Appbar with large height (152). - * - `center-aligned` - Appbar with default height and center-aligned title. + * @internal */ mode?: 'small' | 'medium' | 'large' | 'center-aligned'; style?: StyleProp;