Skip to content

Commit

Permalink
Change cross to trash (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian50 authored Jan 21, 2025
1 parent 8e1af79 commit ec8a53c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/MemoryPreview/MemoryRanges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { INPUT_STYLES } from "@/components/ui/input";
import { Card } from "@/components/ui/card";
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover";
import { Label } from "@/components/ui/label";
import { X, Edit3, Check, HelpCircle, ArrowUp, ArrowDown } from "lucide-react";
import { Edit3, Check, HelpCircle, ArrowUp, ArrowDown, Trash } from "lucide-react";
import { loadMemoryRangeAllWorkers, selectMemoryRangesForFirstWorker } from "@/store/workers/workersSlice";
import { useAppDispatch, useAppSelector } from "@/store/hooks";
import { AddressInput, MemoryRow } from "./MemoryInfinite";
Expand Down Expand Up @@ -190,7 +190,7 @@ function MemoryRangeRow({
<Edit3 className="h-4 w-4" />
</Button>
<Button variant="outline" size="icon" onClick={onRemove}>
<X className="h-4 w-4" />
<Trash className="h-4 w-4" />
</Button>
</>
) : (
Expand All @@ -199,7 +199,7 @@ function MemoryRangeRow({
<Check className="h-4 w-4" />
</Button>
<Button variant="outline" size="icon" onClick={onRemove}>
<X className="h-4 w-4" />
<Trash className="h-4 w-4" />
</Button>
</>
)}
Expand Down

0 comments on commit ec8a53c

Please sign in to comment.