@@ -75,7 +75,7 @@ export const Revision = (props: RevisionProps): JSX.Element => {
onClick={onClose}
prefetch={false}
>
- <i className="icon-login"></i> {t('Go to this version')}
+ <span className="material-symbols-outlined">login</span> {t('Go to this version')}
</Link>
</div>
@@ -61,7 +61,7 @@ export const RevisionDiff = (props: RevisioinDiffProps): JSX.Element => {
- <i className="icon-login"></i>
+ <span className="material-symbols-outlined">login</span>
<div className="col comparison-target-wrapper pt-1">
@@ -72,7 +72,7 @@ export const RevisionDiff = (props: RevisioinDiffProps): JSX.Element => {
@@ -19,7 +19,7 @@ const ApiErrorMessage = (props) => {
return (
<>
<strong><span className="material-symbols-outlined">cancel</span>{ t('page_api_error.already_exists') }</strong>
- <small><a href={targetPath}>{targetPath} <i className="icon-login"></i></a></small>
+ <small><a href={targetPath}>{targetPath} <span className="material-symbols-outlined">login</span></a></small>
</>
);
case 'notfound_or_forbidden':
@@ -192,7 +192,7 @@ export const GrantSelector = (props: Props): JSX.Element => {
<div>
<h4>{t('user_group.belonging_to_no_group')}</h4>
{ currentUser?.admin && (
- <p><a href="/admin/user-groups"><i className="icon icon-fw icon-login"></i>{t('user_group.manage_user_groups')}</a></p>
+ <p><a href="/admin/user-groups"><span className="material-symbols-outlined">login</span>{t('user_group.manage_user_groups')}</a></p>
) }
@@ -91,7 +91,7 @@ const LoginPage: NextPage<CommonProps> = () => {
{/* If the transition source is "/login", use <a /> tag since the transition will not occur if next/link is used. */}
<a href="/login">
- <i className="icon-login me-1" />{t('Sign in is here')}
+ <span className="material-symbols-outlined me-1">login</span>{t('Sign in is here')}
</a>