"use client"; import { AnimatePresence, motion } from "framer-motion"; import type { UISuggestion } from "@/lib/editor/suggestions"; import { Button } from "../ui/button"; import { CrossIcon, SparklesIcon } from "./icons"; export const SuggestionDialog = ({ suggestion, onApply, onClose, }: { suggestion: UISuggestion; onApply: () => void; onClose: () => void; }) => { return (
); };