import { ReactNode } from "react"; interface IconBoxProps { icon: ReactNode; title: string; description: string; hasBorder?: boolean; } export function IconBox({ icon, title, description, hasBorder = true }: IconBoxProps) { return (
{icon}
{title}

{description}

); }