import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { IoCheckmark } from "react-icons/io5" interface PricingCardProps { tier: string price: string description: string features: string[] popular?: boolean className?: string } export function PricingCard({ tier = "Basic", price = "$10", description = "All the basics for getting started", features = ["Feature 1", "Feature 2", "Feature 3"], popular = false, className, }: PricingCardProps) { return ( {popular && (
Most Popular
)} {tier}
{price} /month
{description}
) }