import { AnimatePresence, motion } from "motion/react"; import { cn } from "@/lib/utils"; export default function Nudges({ nudges, onboarding, handleSuggestionClick, }: { nudges: string[]; onboarding?: boolean; handleSuggestionClick: (suggestion: string) => void; }) { return (
{nudges.length > 0 && (
{nudges.map((suggestion: string, index: number) => ( ))}
{/* Fade out gradient on the right */}
)}
); }