From 090b35e52e3c42214bcf044a70d3658d1cf8b2de Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 12 Mar 2024 14:06:12 -0700 Subject: Use new menu for Profile (#3168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * use new menu on profile * organize imports * fix testID * add person icons * use `style` prop for minWidth * use new icons * rm circleban * Add unfollow option if account is blocked/blocking * use `StyleProp` 🤯 * ts after merge --------- Co-authored-by: Samuel Newman --- src/components/Menu/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/components/Menu/index.tsx') diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx index f9b697ea2..9be9dd86b 100644 --- a/src/components/Menu/index.tsx +++ b/src/components/Menu/index.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {View, Pressable} from 'react-native' +import {View, Pressable, ViewStyle, StyleProp} from 'react-native' import flattenReactChildren from 'react-keyed-flatten-children' import {atoms as a, useTheme} from '#/alf' @@ -75,7 +75,10 @@ export function Trigger({children, label}: TriggerProps) { export function Outer({ children, showCancel, -}: React.PropsWithChildren<{showCancel?: boolean}>) { +}: React.PropsWithChildren<{ + showCancel?: boolean + style?: StyleProp +}>) { const context = React.useContext(Context) return ( -- cgit 1.4.1