From 4d3fd4d8d3dd5311b0e64aaaeb1cff9381797eff Mon Sep 17 00:00:00 2001 From: Vinicius Souza Date: Fri, 25 Oct 2024 14:58:27 -0300 Subject: [PATCH] feat: create exercise card component --- src/components/ExerciseCard.tsx | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/components/ExerciseCard.tsx 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 + + + + + + + ); +}