mirror of
https://github.com/documenso/documenso.git
synced 2026-07-27 10:25:00 +10:00
feat: add action buttons to documents table
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user