import { ReactNode } from "react"; interface IconBoxProps { icon?: ReactNode; title: string; description: string; hasBorder?: boolean; theme?: "dark" | "light"; } export function IconBox({ icon, title, description, hasBorder = true, theme = "dark" }: IconBoxProps) { const isLight = theme === "light"; return (
{icon && (
{icon}
)}
{title}

{description}

); }