import { Check, X } from 'lucide-react'; import { Icon } from '@@/Icon'; import { columnHelper } from './helper'; export const status = columnHelper.accessor('acceptsApplication', { header: '', id: 'status', enableSorting: false, cell: ({ getValue }) => { const acceptsApplication = getValue(); return ( ); }, meta: { width: 30, }, enableResizing: false, });