2022-11-28 02:00:28 +00:00
|
|
|
import { Clock } from 'lucide-react';
|
2022-11-13 10:29:25 +00:00
|
|
|
|
2023-05-02 06:42:16 +00:00
|
|
|
import { Icon } from '@@/Icon';
|
2022-11-13 10:29:25 +00:00
|
|
|
|
2023-05-02 06:42:16 +00:00
|
|
|
import { columnHelper } from './helper';
|
|
|
|
|
|
|
|
export const actions = columnHelper.display({
|
|
|
|
header: 'Job Actions',
|
2022-11-13 10:29:25 +00:00
|
|
|
id: 'actions',
|
2023-05-02 06:42:16 +00:00
|
|
|
meta: {
|
|
|
|
width: '110px',
|
|
|
|
},
|
|
|
|
cell: ActionsCell,
|
|
|
|
});
|
2022-11-13 10:29:25 +00:00
|
|
|
|
2023-05-02 06:42:16 +00:00
|
|
|
export function ActionsCell() {
|
2022-11-13 10:29:25 +00:00
|
|
|
return (
|
2023-05-02 06:42:16 +00:00
|
|
|
<div className="text-center">
|
|
|
|
<Icon icon={Clock} />
|
2022-11-13 10:29:25 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|