date picker

This commit is contained in:
hamid zarghami
2025-12-29 17:02:46 +03:30
parent 16325103a8
commit 92ba2b9f75
4 changed files with 18 additions and 29 deletions
+1 -6
View File
@@ -1,7 +1,7 @@
import Button from '@/components/Button'
import Table from '@/components/Table'
import Filters, { type FilterValues, type FieldType } from '@/components/Filters'
import { Add, Eye } from 'iconsax-react'
import { Add } from 'iconsax-react'
import { type FC, useState, useMemo, useCallback } from 'react'
import { Pages } from '@/config/Pages'
import { Link } from 'react-router-dom'
@@ -118,11 +118,6 @@ const CustomersList: FC = () => {
{
key: 'details',
title: 'جزئیات',
render: (item: CustomerListRow) => (
<Link to={`${Pages.customers.detail}${item.id}`} className='inline-flex items-center justify-center'>
<Eye size={20} color="#8C90A3" />
</Link>
),
},
], [])