From 662afcdcb1b419cde915215b3377472cf38bb5ad Mon Sep 17 00:00:00 2001
From: Moe <moe@chocola.dev>
Date: Sun, 15 May 2022 21:08:26 +0700
Subject: [PATCH] Update search button

---
 lib/components/search_form.dart | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/components/search_form.dart b/lib/components/search_form.dart
index 9eda1df..ce77931 100644
--- a/lib/components/search_form.dart
+++ b/lib/components/search_form.dart
@@ -36,7 +36,7 @@ class SearchForm extends StatelessWidget {
             padding: const EdgeInsets.symmetric(
                 horizontal: defaultPadding, vertical: defaultPadding / 2),
             child: SizedBox(
-              width: 48,
+              width: 100,
               height: 48,
               child: ElevatedButton(
                 style: ElevatedButton.styleFrom(
@@ -46,7 +46,7 @@ class SearchForm extends StatelessWidget {
                   ),
                 ),
                 onPressed: () {},
-                child: SvgPicture.asset("assets/icons/Filter.svg"),
+                child: const Text('Search'),
               ),
             ),
           ),