From 9caf38630bfe5aee5d515de83757cacf067e6233 Mon Sep 17 00:00:00 2001 From: Thunnini Date: Fri, 28 Feb 2025 19:40:58 +0900 Subject: [PATCH] =?UTF-8?q?FullHorizontalSlider=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=96=91=20=EC=98=86=20gradient=EA=B0=80=20=ED=95=AD=EC=83=81?= =?UTF-8?q?=20=EB=B3=B4=EC=9D=B4=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../full-horizontal-silder/index.tsx | 31 +++++++++++++------ 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/apps/extension/src/components/full-horizontal-silder/index.tsx b/apps/extension/src/components/full-horizontal-silder/index.tsx index 5a0d16fa4c..f50a7d8ae4 100644 --- a/apps/extension/src/components/full-horizontal-silder/index.tsx +++ b/apps/extension/src/components/full-horizontal-silder/index.tsx @@ -74,9 +74,19 @@ export const FullHorizontalSlider: FunctionComponent<{ {slideIndex === 0 ? ( - + ) : ( - + )} ); @@ -87,9 +97,12 @@ const SliderButton: FunctionComponent<{ handlePrev?: () => void; Icon: React.FunctionComponent; }> = ({ handleNext, handlePrev, Icon }) => { + const [isHover, setIsHover] = useState(false); + return (