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