UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 367 B
import * as React from 'react'; import { FlexProps } from './Flex'; import { HTMLProps } from 'react'; interface TypeProps extends FlexProps { footer: React.ReactNode; footerProps?: FlexProps & HTMLProps<HTMLDivElement>; } declare const FlexWithFooter: (props: TypeProps & React.HTMLProps<HTMLDivElement>) => React.JSX.Element; export default FlexWithFooter;