@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
17 lines (16 loc) • 578 B
TypeScript
import * as React from 'react';
import { PanelProps } from '../../../components/Panel';
import { BoxProps } from 'rebass';
import { AdaptableSystemIconName } from '../../../AdaptableState/Common/AdaptableIcon';
export interface PanelWithImageProps extends PanelProps {
glyphicon?: AdaptableSystemIconName;
icon?: AdaptableSystemIconName;
infoLink?: string;
infoLinkDisabled?: boolean;
borderRadius?: string;
bodyProps?: BoxProps;
theme: any;
headerColor?: string;
button?: React.ReactElement<any>;
}
export declare const PanelWithImage: any;