diff --git a/src/components/ExerciseCard.tsx b/src/components/ExerciseCard.tsx new file mode 100644 index 0000000..10f2983 --- /dev/null +++ b/src/components/ExerciseCard.tsx @@ -0,0 +1,35 @@ +import { TouchableOpacity, TouchableOpacityProps } from 'react-native'; +import { Heading, HStack, Icon, Image, Text, VStack } from '@gluestack-ui/themed'; +import { ChevronRight } from 'lucide-react-native'; + +type Props = TouchableOpacityProps; + +export function ExerciseCard({ ...others }: Props) { + return ( + + + imagem do exercício + + + + Puxada Frontal + + + + 3 séries de 12 repetições with a really big line + + + + + + + ); +}