From ad83423fc2d34d74315999afb10c0cc47c3d9786 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 18 Dec 2023 15:59:29 +0800 Subject: [PATCH] Reduce drawer button width --- src/Components/DrawerButton/DrawerButton.tsx | 65 ++++++++++---------- 1 file changed, 31 insertions(+), 34 deletions(-) diff --git a/src/Components/DrawerButton/DrawerButton.tsx b/src/Components/DrawerButton/DrawerButton.tsx index 4cc04c9..7595629 100644 --- a/src/Components/DrawerButton/DrawerButton.tsx +++ b/src/Components/DrawerButton/DrawerButton.tsx @@ -10,42 +10,39 @@ export interface props { export default function DrawerButton(props: props) { const [clicked, setClicked] = useState(false); return ( -
- -
+ {props.label} +

+ ); }