You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
341 B

import React from "react"
import { Image, Text, useColorModeValue, VStack } from "@chakra-ui/react"
export const Empty = () => {
return (
<VStack spacing="16" py="16">
<Text fontSize="1.2rem">There doesn't seem to be anything here!</Text>
<Image src="/not-found.png" height="260px" />
</VStack>
)
}
export default Empty