"use client"; import { memo, useId } from "react"; import { IconView } from "./Icon.view"; import type { IconProps } from "./Icon.types"; const IconContainer = memo( ({ icon, title, description, className = "", onClick, interactive: interactiveProp = true }) => { const layoutTitleId = useId(); const handleClick = () => { if (!interactiveProp) return; if (onClick) onClick(); }; const handleKeyDown = (event: React.KeyboardEvent) => { if (!interactiveProp) return; if (event.key === "Enter" || event.key === " ") { event.preventDefault(); handleClick(); } }; return ( ); }, ); IconContainer.displayName = "Icon"; export default IconContainer;