Browse Source

Replace eye icons

satof3 2 years ago
parent
commit
63f0f081e3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      apps/app/src/components/Admin/App/MaskedInput.tsx

+ 2 - 2
apps/app/src/components/Admin/App/MaskedInput.tsx

@@ -33,9 +33,9 @@ export default function MaskedInput(props: Props): JSX.Element {
       />
       />
       <span onClick={togglePassword} className={styles.PasswordReveal}>
       <span onClick={togglePassword} className={styles.PasswordReveal}>
         {passwordShown ? (
         {passwordShown ? (
-          <i className="fa fa-eye" />
+          <span className="material-symbols-outlined">visibility</span>
         ) : (
         ) : (
-          <i className="fa fa-eye-slash" />
+          <span className="material-symbols-outlined">visibility_off</span>
         )}
         )}
       </span>
       </span>
     </div>
     </div>