Files
TheGame/packages/web/components/JoinButton.tsx
2022-05-03 09:31:01 -06:00

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>
);