import { ReactNode } from "react"; export function CardItem({ bgColor = "bg-yellow-400", rotate = "rotate-12", icon, }: { bgColor?: string; rotate?: string; icon: ReactNode; }) { return ( <>