Browse Source

show skeleton icon

yohei0125 3 years ago
parent
commit
121ed41880
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/app/src/components/Sidebar/SidebarNav.tsx

+ 2 - 2
packages/app/src/components/Sidebar/SidebarNav.tsx

@@ -55,7 +55,7 @@ const PrimaryItemSkeleton: FC = () => {
       type="button"
       type="button"
       className="d-block btn btn-primary"
       className="d-block btn btn-primary"
     >
     >
-      <i className="material-icons">format_list_bulleted</i>
+      <i className="fa fa-square" aria-hidden="true"></i>
     </button>
     </button>
   );
   );
 };
 };
@@ -82,7 +82,7 @@ SecondaryItem.displayName = 'SecondaryItem';
 const SecondaryItemSkeleton: FC = memo(() => {
 const SecondaryItemSkeleton: FC = memo(() => {
   return (
   return (
     <a href='/' className="d-block btn btn-primary">
     <a href='/' className="d-block btn btn-primary">
-      <i className="material-icons">format_list_bulleted</i>
+      <i className="fa fa-square" aria-hidden="true"></i>
     </a>
     </a>
   );
   );
 });
 });