refactor: update code to use centralized Ant Design imports

- Replaced direct import of '@ant-design/icons' with centralized import from '@/shared/antd-imports'
This commit is contained in:
chamikaJ
2025-07-23 12:07:48 +05:30
parent edf81dbe57
commit a6863d8280
237 changed files with 319 additions and 274 deletions

View File

@@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react';
import { AvatarNamesMap } from '@/shared/constants';
import { Member } from '@/types/schedule/schedule.types';
import { Avatar, Badge, Button, Col, Flex, Popover, Row, Tooltip } from '@/shared/antd-imports';
import { CaretDownOutlined, CaretRightFilled } from '@ant-design/icons';
import { CaretDownOutlined, CaretRightFilled } from '@/shared/antd-imports';
import { useAppSelector } from '@/hooks/useAppSelector';
import './Team.css';
import { useDispatch } from 'react-redux';