Commit a3985ba1 authored by Lyza Danger Gardner's avatar Lyza Danger Gardner Committed by Lyza Gardner

Update shared components in LoggedOutMessage

parent 9720b754
import { Link, LinkButton, Icon } from '@hypothesis/frontend-shared'; import {
Link,
LinkBase,
LinkButton,
LogoIcon,
} from '@hypothesis/frontend-shared/lib/next';
import { useSidebarStore } from '../store'; import { useSidebarStore } from '../store';
...@@ -23,27 +28,28 @@ function LoggedOutMessage({ onLogin }) { ...@@ -23,27 +28,28 @@ function LoggedOutMessage({ onLogin }) {
This is a public annotation created with Hypothesis. <br /> This is a public annotation created with Hypothesis. <br />
To reply or make your own annotations on this document,{' '} To reply or make your own annotations on this document,{' '}
<Link <Link
classes="inline text-color-text underline hover:underline" color="text"
href={store.getLink('signup')} href={store.getLink('signup')}
target="_blank" target="_blank"
underline="always"
> >
create a free account create a free account
</Link>{' '} </Link>{' '}
or{' '} or{' '}
<LinkButton classes="inline underline" onClick={onLogin} variant="dark"> <LinkButton inline color="text" onClick={onLogin} underline="always">
log in log in
</LinkButton> </LinkButton>
. .
</span> </span>
<div> <div>
<Link <LinkBase
href="https://hypothes.is" href="https://hypothes.is"
aria-label="Hypothesis homepage" aria-label="Hypothesis homepage"
target="_blank" target="_blank"
title="Hypothesis homepage" title="Hypothesis homepage"
> >
<Icon name="logo" classes="w-16 h-16 text-grey-7" /> <LogoIcon className="w-16 h-16 text-grey-7" />
</Link> </LinkBase>
</div> </div>
</div> </div>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment