Add expanded cell https://github.com/twentyhq/twenty/assets/29927851/363f2b44-7b3c-4771-a651-dfc4014da6ac 
19 lines
533 B
TypeScript
19 lines
533 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
import { IconBrandGithub } from 'twenty-ui';
|
|
|
|
import { ActionLink } from '@/ui/navigation/link/components/ActionLink';
|
|
|
|
import packageJson from '../../../../../../package.json';
|
|
import { GITHUB_LINK } from '../constants/GithubLink';
|
|
|
|
export const GithubVersionLink = () => {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<ActionLink href={GITHUB_LINK} target="_blank" rel="noreferrer">
|
|
<IconBrandGithub size={theme.icon.size.md} />
|
|
{packageJson.version}
|
|
</ActionLink>
|
|
);
|
|
};
|