mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import { Button } from '@metafam/ds';
|
|
import { MetaLink } from 'components/Link';
|
|
|
|
export const JoinButton: React.FC<{ text: string }> = ({
|
|
text = 'Join Us',
|
|
}) => (
|
|
<MetaLink _hover={{}} href="/join">
|
|
<Button className="border-grad" colorScheme="white" rounded="md" size="lg">
|
|
{text}
|
|
</Button>
|
|
</MetaLink>
|
|
);
|