@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
7 lines (6 loc) • 314 B
TypeScript
import * as React from 'react';
import { HTMLProps } from 'react';
import { FlexProps } from 'rebass';
type EmptyContentProps = HTMLProps<HTMLElement> & FlexProps & {};
declare const EmptyContent: ({ children, className, style, ...flexProps }: EmptyContentProps) => React.JSX.Element;
export default EmptyContent;