Skip to content

Commit 83c9f28

Browse files
MarkoVcodeclaude
andcommitted
fix: Change Export icon from share to download icon
Updated the Export Collection section icon from IconShare to IconDownload to better represent the export functionality. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5743be3 commit 83c9f28

File tree

1 file changed

+2
-2
lines changed
  • packages/bruno-app/src/components/CollectionSettings/Overview/Info

1 file changed

+2
-2
lines changed

packages/bruno-app/src/components/CollectionSettings/Overview/Info/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { getTotalRequestCountInCollection } from 'utils/collections/';
3-
import { IconFolder, IconWorld, IconApi, IconShare, IconFileCode, IconRefresh } from '@tabler/icons';
3+
import { IconFolder, IconWorld, IconApi, IconDownload, IconFileCode, IconRefresh } from '@tabler/icons';
44
import { areItemsLoading, getItemsLoadStats } from "utils/collections/index";
55
import { useState, useEffect } from 'react';
66
import ShareCollection from "components/ShareCollection/index";
@@ -232,7 +232,7 @@ const Info = ({ collection }) => {
232232

233233
<div className="flex items-start group cursor-pointer" onClick={handleToggleShowShareCollectionModal(true)}>
234234
<div className="flex-shrink-0 p-3 bg-indigo-50 dark:bg-indigo-900/20 rounded-lg">
235-
<IconShare className="w-5 h-5 text-indigo-500" stroke={1.5} />
235+
<IconDownload className="w-5 h-5 text-indigo-500" stroke={1.5} />
236236
</div>
237237
<div className="ml-4 h-full flex flex-col justify-start">
238238
<div className="font-semibold text-sm h-fit my-auto">Export</div>

0 commit comments

Comments
 (0)