"use client"; import type { IconCardViewProps } from "./IconCard.types"; export function IconCardView({ icon, title, description, className, onClick, onKeyDown, }: IconCardViewProps) { return (
{/* Icon */}
{icon}
{/* Title - Centered with auto space above and below */}

{title}

{/* Description */}

{description}

); }