import {
TbBuilding,
TbCalendar,
TbLink,
TbMapPin,
TbSum,
} from 'react-icons/tb';
import { Companies_Order_By } from '../../generated/graphql';
import { SortType } from '../../interfaces/sorts/interface';
export const availableSorts = [
{
key: 'name',
label: 'Name',
icon: ,
_type: 'default_sort',
},
{
key: 'employees',
label: 'Employees',
icon: ,
_type: 'default_sort',
},
{
key: 'domain_name',
label: 'Url',
icon: ,
_type: 'default_sort',
},
{
key: 'address',
label: 'Address',
icon: ,
_type: 'default_sort',
},
{
key: 'created_at',
label: 'Creation',
icon: ,
_type: 'default_sort',
},
] satisfies Array>;