added file component to accept offer model

This commit was merged in pull request #712.
This commit is contained in:
victorAnumudu
2024-04-15 10:09:23 +01:00
parent cbfaf1e073
commit d6920b320c
6 changed files with 107 additions and 52 deletions
@@ -3,7 +3,7 @@ import React from 'react'
function Detail({label, value, bg,}) {
return (
<>
<label className='job-label w-full md:w-1/4'>{label}</label>
<label className='job-label w-full md:w-[150px]'>{label}</label>
<p className={`p-1 w-full md:w-3/4 text-sm text-slate-900 dark:text-white ${bg ? bg : null}`}>{value}</p>
</>
)