@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 640 B
JavaScript
import * as React from 'react';
import { Box, Flex } from 'rebass';
import join from '../utils/join';
const baseClassName = 'ab-EmptyContent';
const EmptyContent = ({ children, className, style, ...flexProps }) => {
if (typeof children === 'string') {
children = React.createElement("p", null, children);
}
return (React.createElement(Box, { flex: 1, className: `${baseClassName}__wrapper` },
React.createElement(Flex, { alignItems: "center", justifyContent: "center", flexDirection: "column", ...flexProps, className: join(baseClassName, className), style: style }, children)));
};
export default EmptyContent;