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

{title}

{/* Description */}

{description}

); }