import {Text, View} from "react-native-ui-lib"; import React from "react"; import {ProgressBar} from "react-native-ui-lib/src/components/progressBar"; import {useToDosContext} from "@/contexts/ToDosContext"; import FireworksOrangeIcon from "@/assets/svgs/FireworksOrangeIcon"; const ProgressCard = ({children}: { children?: React.ReactNode }) => { const {maxPoints} = useToDosContext(); return ( You have earned XX points this week!{" "} 0 {maxPoints} {children} ); }; export default ProgressCard;