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