mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
import React from 'react';
|
|
import Icon from 'components/common/Icon';
|
|
import Logo from 'assets/logo.svg';
|
|
import styles from './EmptyPlaceholder.module.css';
|
|
|
|
export default function EmptyPlaceholder({ msg, children }) {
|
|
return (
|
|
<div className={styles.placeholder}>
|
|
<Icon icon={<Logo />} size="xlarge" />
|
|
<h2>{msg}</h2>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|