Files
Users-Wrench/src/components/MyActiveJobs/JobActions/PastDueTaskAction.jsx
T
CHIEFSOFT\ameye e0a728c5cf Coupon pening
2023-06-12 17:43:07 -04:00

35 lines
1.1 KiB
React

import React from 'react'
function PastDueTaskAction() {
return (
<div className='job-action'>
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400 worker-pastdue">
<tbody>
<tr>
<td>
<div className="flex space-x-2 items-center w-full">
<h1 className="text-xl text-dark-gray dark:text-white">
You have missed the allocated time
</h1>
{/*<div className="flex flex-col flex-[0.9]"> </div>*/}
</div>
</td>
</tr>
<tr>
<td>
<div className="flex justify-center items-center">
<button type="button" className="w-120 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white">
Request Extension
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
)
}
export default PastDueTaskAction