Skip to content

Commit

Permalink
🐛fix bug: BoxSelect has been replaced by BoxSelectIcon (#115) (#117)
Browse files Browse the repository at this point in the history
fix bug: BoxSelect has been replaced by  BoxSelectIcon (#115)
ref: lucide-icons/lucide#2733
  • Loading branch information
SUSTYuxiao authored Jan 17, 2025
1 parent ffb4d8c commit db1f9ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FlowEditor/features/ContextMenu/useMenuAction.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ZoomInOutlined, ZoomOutOutlined } from '@ant-design/icons';
import { BoxSelect, ClipboardList } from 'lucide-react';
import { BoxSelectIcon, ClipboardList } from 'lucide-react';
import { useMemo } from 'react';
import { useReactFlow } from 'reactflow';

Expand All @@ -26,7 +26,7 @@ export const useMenuActions = () => {
selectAll: {
key: 'selectAll',
label: '选择全部',
icon: <BoxSelect size={size} />,
icon: <BoxSelectIcon size={size} />,
onClick: selectAll,
shortcut: ['meta', 'A'],
},
Expand Down

0 comments on commit db1f9ff

Please sign in to comment.