import { Button } from '@/components/ui/button'; import { AnimatePresence, motion } from 'framer-motion'; import { XIcon } from 'lucide-react'; interface PromptCardProps { title: string; subtitle: string; onClose: () => void; children: React.ReactNode; gradientColor?: string; show: boolean; } export function PromptCard({ title, subtitle, onClose, children, gradientColor = 'rgb(16 185 129)', show, }: PromptCardProps) { return ( {show && (

{title}

{subtitle}

{children}
)} ); }