import type { ReactNode } from "react"; interface FeatureCardProps { icon: ReactNode; title: string; description: string; onClick?: () => void; className?: string; } export function FeatureCard({ icon, title, description, onClick, className = "", }: FeatureCardProps) { const Component = onClick ? "button" : "div"; return (
{icon}

{title}

{description}

); }