File tree Expand file tree Collapse file tree
apps/scan/src/app/(app)/(home)/(overview)/_components/sellers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
1111 Server ,
1212 Users ,
1313} from 'lucide-react' ;
14+ import Image from 'next/image' ;
1415import Link from 'next/link' ;
1516import { useState } from 'react' ;
1617
@@ -203,7 +204,24 @@ export const featuredServiceColumns: ExtendedColumnDef<FeaturedServiceItem>[] =
203204 } ,
204205 {
205206 accessorKey : 'tryIt' ,
206- header : ( ) => < > </ > ,
207+ header : ( ) => (
208+ < div className = "flex items-center justify-center" title = "AgentCash" >
209+ < Image
210+ src = "/agentcash-light.svg"
211+ alt = "AgentCash"
212+ width = { 16 }
213+ height = { 16 }
214+ className = "size-4 block dark:hidden"
215+ />
216+ < Image
217+ src = "/agentcash-dark.svg"
218+ alt = "AgentCash"
219+ width = { 16 }
220+ height = { 16 }
221+ className = "size-4 hidden dark:block"
222+ />
223+ </ div >
224+ ) ,
207225 cell : ( { row } ) => {
208226 const origin = row . original . origins [ 0 ] ?. origin ;
209227 if ( ! origin ) return null ;
You can’t perform that action at this time.
0 commit comments