From 665a609be594f5416a59a11b53103a0048b5f076 Mon Sep 17 00:00:00 2001 From: Walid Kayhan Date: Tue, 10 Sep 2024 15:56:58 -0400 Subject: [PATCH] Use react icons instead --- src/app/src/features/Console/TerminalInput.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/src/features/Console/TerminalInput.tsx b/src/app/src/features/Console/TerminalInput.tsx index adbe2e336..aa1ca2c3d 100644 --- a/src/app/src/features/Console/TerminalInput.tsx +++ b/src/app/src/features/Console/TerminalInput.tsx @@ -1,10 +1,10 @@ import { useRef } from 'react'; +import { LuCopy } from 'react-icons/lu'; import { Button } from 'components/shadcn/Button'; import { Input } from 'components/shadcn/Input'; import controller from 'lib/controller'; -import { CopyIcon } from 'lucide-react'; const TerminalInput = () => { const inputRef = useRef(null); @@ -33,6 +33,7 @@ const TerminalInput = () => { handleCommandExecute(); break; } + // TODO: add these back in // case 'Backspace': { // const { value } = e.target; // //If there is only one character left and the user has pressed the backspace, @@ -62,8 +63,9 @@ const TerminalInput = () => { }} /> -