import { PencilIcon, PlusIcon, TrashIcon } from '@heroicons/react/24/outline';
import Link from 'next/link';
export function CreateInvoice() {
return (
Create Invoice{' '}
);
}
export function UpdateInvoice({ id }: { id: string }) {
return (
);
}
export function DeleteInvoice({ id }: { id: string }) {
return (
<>
>
);
}