import { Terminal, Pencil, FileTerminal } from "lucide-react"; import { motion } from "motion/react"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip"; type Props = { id: string; }; export default function ActionMenu({ id }: Props) { const buttonClass = "flex h-8 w-8 items-center justify-center rounded-lg text-muted-foreground transition-all duration-150 hover:bg-green-50 hover:text-green-600 active:scale-95"; return (

SSH

Create Blog

Run Scripts

); }