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