Shun Miyazawa hace 2 años
padre
commit
367e536ec6
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      apps/app/src/components/PageControls/SearchButton.tsx

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

@@ -1,9 +1,11 @@
 import React from 'react';
 
+import styles from './SearchButton.module.scss';
+
 const SearchButton = (): JSX.Element => {
   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>
   );
 };