2
0
Shun Miyazawa 2 жил өмнө
parent
commit
367e536ec6

+ 4 - 2
apps/app/src/components/PageControls/SearchButton.tsx

@@ -1,9 +1,11 @@
 import React from 'react';
 import React from 'react';
 
 
+import styles from './SearchButton.module.scss';
+
 const SearchButton = (): JSX.Element => {
 const SearchButton = (): JSX.Element => {
   return (
   return (
-    <button type="button" className="btn border-0 d-flex align-items-center">
-      <span className="material-symbols-outlined">search</span>
+    <button type="button" className={`me-3 btn border-0 d-flex align-items-center ${styles['btn-search']}`}>
+      <span className="material-symbols-outlined fill">search</span>
     </button>
     </button>
   );
   );
 };
 };