Files
TheGame/packages/web/components/Guild/GuildNotFound.tsx

24 lines
606 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Image, Text, VStack } from '@metafam/ds';
import PlayersNotFoundImage from '#assets/no-players-found.svg';
export const GuildNotFound: React.FC = () => (
<VStack
w="100%"
maxW="79rem"
p={{ base: 8, md: 16 }}
spacing={{ base: 4, md: 6 }}
color="white"
borderRadius="0.5rem"
bg="blackAlpha.500"
>
<Image src={PlayersNotFoundImage.src} />
<Text fontWeight="bold" fontSize="xl" textAlign="center">
No Guilds Found
</Text>
<Text textAlign="center">
We cant find any guilds that match the filters you selected.
</Text>
</VStack>
);