import React from 'react';
import { Icon } from 'UI';
import styles from './noContent.module.css';
export default ({
title =
No data available.
,
subtext,
icon,
iconSize = 100,
size,
show = true,
children = null,
empty = false,
image = null,
style = {},
}) => (!show ? children :
{
icon &&
}
{ title &&
{ title }
}
{
subtext &&
{ subtext }
}
{
image &&
{ image }
}
);