|
|
@@ -1,4 +1,5 @@
|
|
|
-import React, { FC, memo } from 'react';
|
|
|
+import type { FC } from 'react';
|
|
|
+import React, { memo } from 'react';
|
|
|
|
|
|
import { useTranslation } from 'next-i18next';
|
|
|
import Link from 'next/link';
|
|
|
@@ -13,7 +14,7 @@ export const PrivateLegacyPagesLink: FC = memo(() => {
|
|
|
className="h5 grw-private-legacy-pages-anchor text-decoration-none"
|
|
|
prefetch={false}
|
|
|
>
|
|
|
- <i className="icon-drawer me-2"></i> {t('private_legacy_pages.title')}
|
|
|
+ <span className="material-symbols-outlined me-2">bottom_drawer</span> {t('private_legacy_pages.title')}
|
|
|
</Link>
|
|
|
);
|
|
|
});
|