File tree Expand file tree Collapse file tree
apps/web/src/components/workflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { XIcon } from "lucide-react" ;
1+ import { Trash2Icon } from "lucide-react" ;
22
33interface ClearButtonProps {
44 onClick : ( ) => void ;
@@ -18,7 +18,7 @@ export function ClearButton({
1818 aria-label = { label }
1919 type = "button"
2020 >
21- < XIcon className = "h-4 w-4" />
21+ < Trash2Icon className = "h-4 w-4" />
2222 </ button >
2323 ) ;
2424}
Original file line number Diff line number Diff line change 1- import Eraser from "lucide-react/icons/eraser " ;
1+ import { Trash2 } from "lucide-react" ;
22import Save from "lucide-react/icons/save" ;
33import { useEffect , useRef , useState } from "react" ;
44
@@ -210,7 +210,7 @@ function CanvasDoodleWidget({
210210 disabled = { isUploading || readonly }
211211 aria-label = "Clear"
212212 >
213- < Eraser className = "!size-3" />
213+ < Trash2 className = "!size-3" />
214214 </ button >
215215 < button
216216 onClick = { saveCanvas }
You can’t perform that action at this time.
0 commit comments