import { Link } from "@remix-run/react"; import { PencilIcon } from "lucide-react"; import { Button } from "~/components/ui/button"; import type { ProyekPendanaan } from "~/types/api/proyek-pendanaan"; interface CellActionProps { data: ProyekPendanaan; } export function CellAction({ data }: CellActionProps) { return ( <> ); }