From 0f62be812a684d7de7f6aec6f7311d6f439a22d6 Mon Sep 17 00:00:00 2001 From: Daniel Avila Date: Sat, 8 Apr 2023 08:37:44 -0400 Subject: [PATCH] refactor(AdjustToneButton.jsx): replace svg icon with lucide-react Settings2 icon --- .../src/components/Input/AdjustToneButton.jsx | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/client/src/components/Input/AdjustToneButton.jsx b/client/src/components/Input/AdjustToneButton.jsx index f733652d37..051b5e8e12 100644 --- a/client/src/components/Input/AdjustToneButton.jsx +++ b/client/src/components/Input/AdjustToneButton.jsx @@ -1,4 +1,5 @@ import React from 'react'; +import { Settings2 } from 'lucide-react'; export default function AdjustButton({ onClick }) { const clickHandler = e => { e.preventDefault(); @@ -10,22 +11,7 @@ export default function AdjustButton({ onClick }) { className="group absolute bottom-11 right-0 flex h-[100%] w-[50px] items-center justify-center bg-transparent p-1 text-gray-500 lg:bottom-0 lg:-right-11" >
- - - +
);