import React, { type ReactNode } from "react"; import { cn } from "../lib/utils"; interface InfoCardProps { icon: ReactNode; title: string; description: string; iconWrapperClassName?: string; className?: string; } export function InfoCard({ icon, title, description, iconWrapperClassName, className, }: InfoCardProps) { return (
{icon}

{title}

{description}

); }