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 } export default function SectionProgress({ text }: Props) { return ( {text} ) }