chore: reorganized folder structure for tab icons

This commit is contained in:
Anoop M D 2024-09-16 01:00:23 +05:30
parent ea9111748f
commit 50d93bc249
5 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';
import { IconAlertTriangle } from '@tabler/icons';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import CloseTabIcon from './CloseTabIcon';
const RequestTabNotFound = ({ handleCloseClick }) => {
const [showErrorMessage, setShowErrorMessage] = useState(false);

View File

@ -1,5 +1,5 @@
import React from 'react';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import CloseTabIcon from './CloseTabIcon';
import { IconVariable, IconSettings, IconRun, IconFolder, IconShieldLock } from '@tabler/icons';
const SpecialTab = ({ handleCloseClick, type, tabName }) => {

View File

@ -15,8 +15,8 @@ import StyledWrapper from './StyledWrapper';
import Dropdown from 'components/Dropdown';
import CloneCollectionItem from 'components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index';
import NewRequest from 'components/Sidebar/NewRequest/index';
import CloseTabIcon from './CloseTab/CloseTabIcon';
import DraftTabIcon from './CloseTab/DraftTabIcon';
import CloseTabIcon from './CloseTabIcon';
import DraftTabIcon from './DraftTabIcon';
const RequestTab = ({ tab, collection, tabIndex, collectionRequestTabs, folderUid }) => {
const dispatch = useDispatch();