@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
26 lines (25 loc) • 683 B
TypeScript
import * as React from 'react';
export interface CardProps {
children: React.ReactNode;
className?: string;
style?: React.CSSProperties;
shadow?: boolean;
gap?: 0 | 1 | 2 | 3 | 4 | 8;
}
export declare function Card(props: CardProps): React.JSX.Element;
export declare namespace Card {
var Title: (props: CardTitleProps) => React.JSX.Element;
var Body: (props: CardBodyProps) => React.JSX.Element;
}
interface CardTitleProps {
children: React.ReactNode;
className?: string;
gap?: CardProps['gap'];
border?: boolean;
}
interface CardBodyProps {
children: React.ReactNode;
gap?: CardProps['gap'];
className?: string;
}
export {};