fix: export/import icons and styles (#6462)

This commit is contained in:
naman-bruno
2025-12-19 00:00:12 +05:30
committed by GitHub
parent 336496a1d7
commit 397ccbb425
7 changed files with 22 additions and 144 deletions

View File

@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { useSelector, useDispatch } from 'react-redux';
import { IconPlus, IconFolder, IconFileImport } from '@tabler/icons';
import { IconPlus, IconFolder, IconDownload } from '@tabler/icons';
import { importCollection, openCollection } from 'providers/ReduxStore/slices/collections/actions';
import toast from 'react-hot-toast';
import CreateCollection from 'components/Sidebar/CreateCollection';
@@ -116,7 +116,7 @@ const WorkspaceOverview = ({ workspace }) => {
<span>Open Collection</span>
</button>
<button className="quick-action-btn" onClick={handleImportCollection}>
<IconFileImport size={14} strokeWidth={1.5} />
<IconDownload size={14} strokeWidth={1.5} />
<span>Import Collection</span>
</button>
</div>