import React from 'react';
import { Progress, ProgressFilledTrack, VStack, Text, Heading, Center, HStack } from '@gluestack-ui/themed';
const ProgressBasic = ({ value = 50, ...props }: any) => {
return (
Progress
Hint
);
};
ProgressBasic.description =
'This is a basic Progress component example. Progress components are used to show the progress of a task.';
export default ProgressBasic;
export { Progress, ProgressFilledTrack, VStack, Text, Heading };