import { DollarSign } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; export default function Component(props: { title: string; desc: string | JSX.Element; icon: any; className?: string; }) { return ( {props.title}
{props.desc}
); }