mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 08:58:02 -05:00
24 lines
606 B
TypeScript
24 lines
606 B
TypeScript
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 can’t find any guilds that match the filters you selected.
|
||
</Text>
|
||
</VStack>
|
||
);
|