Skip to content

Commit

Permalink
change default icon from opacity to light grey
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed Jan 29, 2024
1 parent d839005 commit 4b9ae0f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions apps/expo/src/components/avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Image, type ImageProps, type ImageStyle } from "expo-image";
import { useTheme } from "@react-navigation/native";
import { UserCircle } from "lucide-react-native";
import { ErrorBoundary } from "react-error-boundary";
import colors from "tailwindcss/colors";

import { useSelf } from "~/app/settings/account";
import { cx } from "~/lib/utils/cx";
Expand Down Expand Up @@ -136,11 +137,7 @@ const AvatarInner = ({

return (
<View className={className} accessibilityLabel={alt} style={style}>
<UserCircle
size={iconSize}
color={theme.colors.text}
className="opacity-50"
/>
<UserCircle size={iconSize} color={colors.neutral[500]} />
</View>
);
};

0 comments on commit 4b9ae0f

Please sign in to comment.