diff --git a/components/Global/icon.tsx b/components/Global/icon.tsx index 374dffbe..60f7500f 100644 --- a/components/Global/icon.tsx +++ b/components/Global/icon.tsx @@ -1,26 +1,24 @@ import React from "react" import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons" -import { useTheme } from "tamagui" import { Colors } from "../../enums/colors" const iconDimensions = { - width: 50, - height: 50 + width: 75, + height: 75 } const largeDimensions = { - width: 200, - height: 200 + width: 150, + height: 150 } export default function Icon({ name, onPress, large }: { name: string, onPress?: Function, large?: boolean }) : React.JSX.Element { - const theme = useTheme(); let dimensions = large ? largeDimensions : iconDimensions return ( { if (onPress)