import React from 'react'; import PropTypes from 'prop-types'; import Icon from 'components/common/Icon'; import Logo from 'assets/logo.svg'; import styles from './EmptyPlaceholder.module.css'; function EmptyPlaceholder({ msg, children }) { return (
} size="xlarge" />

{msg}

{children}
); } EmptyPlaceholder.propTypes = { msg: PropTypes.node, children: PropTypes.node, }; export default EmptyPlaceholder;