My Account Route #3

Merged
ditorodev merged 7 commits from riobuenoDevelops/my-account into develop 2024-03-14 15:43:54 +00:00
1 changed files with 12 additions and 7 deletions
Showing only changes of commit ff74a98e24 - Show all commits

View File

@ -6,10 +6,11 @@ interface UsageCardProps {
label: string, label: string,
monthlyUsage: number, // Asumming that the minimium is 1GB monthlyUsage: number, // Asumming that the minimium is 1GB
currentUsage: number, currentUsage: number,
icon: React.ReactNode icon: React.ReactNode,
button?: React.ReactNode;
} }
export const UsageCard = ({ label, monthlyUsage, currentUsage, icon }: UsageCardProps) => { export const UsageCard = ({ label, monthlyUsage, currentUsage, icon, button }: UsageCardProps) => {
return ( return (
<div className="p-8 border rounded-lg w-full"> <div className="p-8 border rounded-lg w-full">
<div className="flex items-center justify-between mb-8"> <div className="flex items-center justify-between mb-8">
@ -20,10 +21,14 @@ export const UsageCard = ({ label, monthlyUsage, currentUsage, icon }: UsageCard
</div> </div>
Montly {label.toLocaleLowerCase()} limit is {monthlyUsage} GB Montly {label.toLocaleLowerCase()} limit is {monthlyUsage} GB
</div> </div>
{!button ? (
<Button className="gap-x-2 h-12"> <Button className="gap-x-2 h-12">
<AddIcon /> <AddIcon />
Add More Add More
</Button> </Button>
) : (
button
)}
</div> </div>
<Progress max={monthlyUsage} value={currentUsage} /> <Progress max={monthlyUsage} value={currentUsage} />
<div className="flex items-center justify-between mt-4 font-semibold text-sm"> <div className="flex items-center justify-between mt-4 font-semibold text-sm">