2023-01-21 01:12:53 +00:00
|
|
|
import { Icon, Text, Flexbox } from 'react-basics';
|
2020-08-11 02:54:03 +00:00
|
|
|
import Logo from 'assets/logo.svg';
|
|
|
|
|
|
2023-04-21 15:00:42 +00:00
|
|
|
export function EmptyPlaceholder({ message, children }) {
|
2020-08-11 02:54:03 +00:00
|
|
|
return (
|
2023-01-21 01:12:53 +00:00
|
|
|
<Flexbox direction="column" alignItems="center" justifyContent="center" gap={60} height={600}>
|
|
|
|
|
<Icon size="xl">
|
2022-12-27 00:57:59 +00:00
|
|
|
<Logo />
|
|
|
|
|
</Icon>
|
2023-01-28 05:53:13 +00:00
|
|
|
<Text size="lg">{message}</Text>
|
2023-01-21 01:12:53 +00:00
|
|
|
<div>{children}</div>
|
|
|
|
|
</Flexbox>
|
2020-08-11 02:54:03 +00:00
|
|
|
);
|
|
|
|
|
}
|
2021-02-16 11:59:39 +00:00
|
|
|
|
|
|
|
|
export default EmptyPlaceholder;
|