"use client"; import { AnimatePresence, motion } from "framer-motion"; import { Check, Copy } from "lucide-react"; type Props = { secret: string; copied: boolean; onCopy: () => void; }; export default function SecretCard({ secret, copied, onCopy }: Props) { return (