"use client"; import { motion } from "framer-motion"; import { Check, Copy, RefreshCw } from "lucide-react"; type Props = { secret: string; copiedEnv: boolean; onGenerate: () => void; onCopyEnv: () => void; }; export default function Actions({ secret, copiedEnv, onGenerate, onCopyEnv }: Props) { return ( Generate .env {copiedEnv ? : } ); }