import { ColorsStatus } from "@/constants/ColorsStatus"; import Styles from "@/constants/Styles"; import { AntDesign } from "@expo/vector-icons"; import { Text, View } from "react-native"; import ProgressBar from "./progressBar"; type Props = { text: string, progress: number } export default function SectionProgress({ text, progress }: Props) { return ( {text} ) }