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