import { Button } from "./ui/button"; import { Progress } from "./ui/progress"; interface UsageCardProps { usageName: string, monthlyUsage: number, // Asumming that the minimium is 1GB currentUsage: number, icon: React.ReactNode } export const UsageCard = ({ usageName, monthlyUsage, currentUsage, icon }: UsageCardProps) => { return (