feat: add action buttons to documents table

This commit is contained in:
Ephraim Atta-Duncan
2023-07-04 00:29:26 +00:00
parent 60b150cc58
commit 1dd1bb617d
3 changed files with 41 additions and 3 deletions
@@ -0,0 +1,33 @@
'use client';
import React from 'react';
import { Download, Edit, Trash } from 'lucide-react';
export function ActionButtons() {
return (
<div className="flex cursor-pointer gap-6">
<Edit
size={18}
color="#71717A"
onClick={() => {
console.log('Edit Button');
}}
/>
<Download
size={18}
color="#71717A"
onClick={() => {
console.log('Download Button');
}}
/>
<Trash
size={18}
color="#71717A"
onClick={() => {
console.log('Delete Button');
}}
/>
</div>
);
}