File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ import { useTraineesContext } from '../hook/useTraineesData';
2626import { XIcon } from '@heroicons/react/solid' ;
2727import { FaTimes } from 'react-icons/fa' ;
2828import { log } from 'console' ;
29+ import { FaEye } from 'react-icons/fa' ;
30+
2931const organizationToken = localStorage . getItem ( 'orgToken' ) ;
3032`` ;
3133/* istanbul ignore next */
@@ -144,16 +146,15 @@ const TtlTraineeDashboard = () => {
144146 accessor : '' ,
145147 Cell : ( { row } : any ) =>
146148 hasData && ( // Only render the button if there is data
147- < Button
148- variant = "primary"
149- size = "sm"
149+ < button
150150 onClick = { ( ) => {
151151 handleClickOpen ( row . original ?. email ) ;
152152 } }
153- style = "px-4 py-0 text-sm"
153+ className = "text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-600"
154+ aria-label = "View Details"
154155 >
155- { t ( 'View more' ) }
156- </ Button >
156+ < FaEye className = "text-2xl text-[#9e85f5]" />
157+ </ button >
157158 ) ,
158159 } ,
159160 ] ;
You can’t perform that action at this time.
0 commit comments