UNPKG

@adaptabletools/adaptable

Version:

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

19 lines (18 loc) 620 B
import * as React from 'react'; import { BoxProps, FlexProps } from 'rebass'; import { ReactNode, HTMLProps } from 'react'; export declare const baseClassName = "ab-Panel"; export interface HeaderProps extends FlexProps { } export type PanelProps = HTMLProps<HTMLElement> & { header?: ReactNode | string; children?: ReactNode; headerProps?: HeaderProps; bodyProps?: BoxProps; variant?: 'default' | 'primary' | 'modern'; border?: string | number; borderRadius?: string | number; bodyScroll?: string | boolean; } & BoxProps; declare const Panel: React.FC<PanelProps>; export default Panel;