a5989a470c
* Begin docs improvement * Keep improving documentation * Upgrade Docusarus * Fix broken links
22 lines
424 B
TypeScript
22 lines
424 B
TypeScript
import React from 'react';
|
|
import { TbBrandGithub } from 'react-icons/tb';
|
|
|
|
const GithubLink = () => {
|
|
return (
|
|
<a
|
|
className="navbar__item navbar__link"
|
|
href="https://github.com/twentyhq/twenty"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
style={{
|
|
display: 'flex',
|
|
verticalAlign: 'middle',
|
|
}}
|
|
>
|
|
<TbBrandGithub />
|
|
</a>
|
|
);
|
|
};
|
|
|
|
export default GithubLink;
|