Fix:
modified: app.config.js
modified: app/(application)/(user)/donation/[id]/[status]/detail.tsx
modified: app/(application)/(user)/investment/(tabs)/my-holding.tsx
modified: app/(application)/(user)/investment/[id]/[status]/detail.tsx
modified: app/(application)/(user)/investment/[id]/index.tsx
modified: app/(application)/admin/event/[id]/[status]/index.tsx
modified: components/DateInput/DateTimePickerCustom.tsx
modified: ios/HIPMIBadungConnect/Info.plist
modified: screens/Invesment/BoxProgressSection.tsx
### No Issue
29 lines
625 B
TypeScript
29 lines
625 B
TypeScript
import { BaseBox, StackCustom, TextCustom, ProgressCustom } from "@/components";
|
|
|
|
export default function Invesment_BoxProgressSection({
|
|
progress,
|
|
status,
|
|
}: {
|
|
progress: number;
|
|
status: string;
|
|
}) {
|
|
return (
|
|
<>
|
|
{status === "publish" && (
|
|
<BaseBox>
|
|
<StackCustom>
|
|
<TextCustom bold>Progress Saham</TextCustom>
|
|
<ProgressCustom
|
|
label={(progress || 0) + "%"}
|
|
value={progress || 0}
|
|
size="lg"
|
|
animated
|
|
color="primary"
|
|
/>
|
|
</StackCustom>
|
|
</BaseBox>
|
|
)}
|
|
</>
|
|
);
|
|
}
|