From e0563de28e95a749f24acb3b097da3c68571c0a7 Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Thu, 3 Jun 2021 20:42:05 +0000 Subject: [PATCH] stroke-width -> strokeWidth + 4-tab to 2-tab --- components/ui/Button.tsx | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/components/ui/Button.tsx b/components/ui/Button.tsx index 80777b0964..647d633cb0 100644 --- a/components/ui/Button.tsx +++ b/components/ui/Button.tsx @@ -1,17 +1,16 @@ import { useState } from 'react'; export default function Button(props) { - const [loading, setLoading] = useState(false); - - return( - - ); + const [loading, setLoading] = useState(false); + return( + + ); } \ No newline at end of file