* Remove auth guard from password reset email endpoint * Add arg for GQL mutation and update its usage * Add forgot password button on sign-in page * Generate automated graphql queries * Move utils to dedicated hook * Remove useless hook function * Split simple hook methods * Split workspace hook * Split signInWithGoogle hook * Split useSignInUpForm * Fix error in logs * Add Link Button UI Component * Add storybook doc --------- Co-authored-by: martmull <martmull@hotmail.fr>
19 lines
532 B
TypeScript
19 lines
532 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
|
|
import { IconBrandGithub } from '@/ui/display/icon';
|
|
import { ActionLink } from '@/ui/navigation/link/components/ActionLink.tsx';
|
|
|
|
import packageJson from '../../../../../../package.json';
|
|
import { githubLink } from '../constants';
|
|
|
|
export const GithubVersionLink = () => {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<ActionLink href={githubLink} target="_blank" rel="noreferrer">
|
|
<IconBrandGithub size={theme.icon.size.md} />
|
|
{packageJson.version}
|
|
</ActionLink>
|
|
);
|
|
};
|